Mentions légales du service

Skip to content
Snippets Groups Projects
pom.xml 3.26 KiB
Newer Older
Gabriel Landais's avatar
Gabriel Landais committed
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Gabriel Landais's avatar
Gabriel Landais committed

	<parent>
		<groupId>net.ihe.gazelle.proxy</groupId>
		<artifactId>gazelle-proxy</artifactId>
		<version>0.7-SNAPSHOT</version>
Gabriel Landais's avatar
Gabriel Landais committed
		<relativePath>../pom.xml</relativePath>
	</parent>

	<modelVersion>4.0.0</modelVersion>
	<artifactId>gazelle-proxy-ejb</artifactId>
	<version>0.7-SNAPSHOT</version>
Gabriel Landais's avatar
Gabriel Landais committed
	<packaging>ejb</packaging>
	<name>gazelle-proxy - EJB</name>

	<build>
		<resources>
			<resource>
				<directory>src/main/resources</directory>
				<filtering>true</filtering>
			</resource>
		</resources>
	</build>

	<dependencies>
		<dependency>
			<groupId>net.ihe.gazelle.proxy</groupId>
			<artifactId>gazelle-proxy-datamodel</artifactId>
		</dependency>
		<dependency>
			<groupId>net.ihe.gazelle.proxy</groupId>
			<artifactId>gazelle-proxy-netty</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.tika</groupId>
			<artifactId>tika-core</artifactId>
			<version>0.7</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tika</groupId>
			<artifactId>tika-parsers</artifactId>
			<version>0.7</version>
			<exclusions>
				<exclusion>
					<artifactId>commons-logging</artifactId>
					<groupId>commons-logging</groupId>
				</exclusion>
Gabriel Landais's avatar
 
Gabriel Landais committed
				<exclusion>
					<artifactId>log4j</artifactId>
					<groupId>log4j</groupId>
				</exclusion>
Gabriel Landais's avatar
Gabriel Landais committed
			</exclusions>
		</dependency>
		<dependency>
			<groupId>com.uwyn</groupId>
			<artifactId>jhighlight</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>org.jboss.seam</groupId>
			<artifactId>jboss-seam</artifactId>
		</dependency>

		<dependency>
			<groupId>javax.ejb</groupId>
			<artifactId>ejb-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.faces</groupId>
			<artifactId>jsf-api</artifactId>
			<version>1.2_12</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>apache-log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.15</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.richfaces.framework</groupId>
			<artifactId>richfaces-impl</artifactId>
			<version>3.3.1.GA</version>
		</dependency>
		<dependency>
			<groupId>org.richfaces.framework</groupId>
			<artifactId>richfaces-api</artifactId>
			<version>${version.richfaces}</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>javax.persistence</groupId>
			<artifactId>persistence-api</artifactId>
			<scope>provided</scope>
		</dependency>
Gabriel Landais's avatar
Gabriel Landais committed
		<dependency>
			<groupId>org.jasig.cas</groupId>
			<artifactId>cas-client-core</artifactId>
			<version>3.1.10</version>
		</dependency>
Gabriel Landais's avatar
Gabriel Landais committed

Gabriel Landais's avatar
Gabriel Landais committed
		<dependency>
			<groupId>net.ihe.gazelle.simulators.tls</groupId>
			<artifactId>TLSSimulator-pki-jar</artifactId>
		</dependency>
Gabriel Landais's avatar
Gabriel Landais committed

		<dependency>
			<groupId>commons-io</groupId>
			<artifactId>commons-io</artifactId>
			<version>2.0.1</version>
			<type>jar</type>
			<scope>compile</scope>
Gabriel Landais's avatar
Gabriel Landais committed
		</dependency>
Gabriel Landais's avatar
Gabriel Landais committed
	</dependencies>
</project>