Mentions légales du service

Skip to content
Snippets Groups Projects
pom.xml 9.53 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>org.jboss.seam</groupId>
		<artifactId>parent</artifactId>
		<version>2.2.0.GA</version>
	</parent>


	<modelVersion>4.0.0</modelVersion>
	<groupId>net.ihe.gazelle.proxy</groupId>
	<artifactId>gazelle-proxy</artifactId>
	<packaging>pom</packaging>
Gabriel Landais's avatar
Gabriel Landais committed
	<name>gazelle-proxy</name>

	<scm>
		<connection>scm:svn:svn://scm.gforge.inria.fr/svn/gazelle/Maven/gazelle-proxy/tags/gazelle-proxy-0.6</connection>
		<developerConnection>scm:svn:svn+ssh://scm.gforge.inria.fr/svn/gazelle/Maven/gazelle-proxy/tags/gazelle-proxy-0.6</developerConnection>
Gabriel Landais's avatar
Gabriel Landais committed
	</scm>

	<properties>
		<version.seam>2.2.0.GA</version.seam>
		<version.jboss.app>5</version.jboss.app>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
	</properties>

	<repositories>
		<repository>
			<id>repository.jboss.org</id>
			<name>JBoss Maven Repository</name>
			<url>http://repository.jboss.org/maven2</url>
			<snapshots>
				<enabled>false</enabled>
			</snapshots>
			<releases>
				<enabled>true</enabled>
			</releases>
		</repository>
	</repositories>

	<dependencies>
		<dependency>
			<groupId>de.akquinet.jbosscc</groupId>
			<artifactId>jbosscc-needle-ejb</artifactId>
			<version>1.1</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>de.akquinet.jbosscc</groupId>
			<artifactId>jbosscc-needle-seam</artifactId>
			<version>1.1</version>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.1</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>2.5.2</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymockclassextension</artifactId>
			<version>2.5.2</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-ear-plugin</artifactId>
					<version>2.4.1</version>
				</plugin>
				<plugin>
					<artifactId>maven-ejb-plugin</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
					<version>2.3</version>
Gabriel Landais's avatar
Gabriel Landais committed
					<configuration>
						<ejbVersion>3.0</ejbVersion>
						<archive>
							<manifest>
								<addClasspath>true</addClasspath>
							</manifest>
						</archive>
					</configuration>
				</plugin>
				<plugin>
					<artifactId>maven-jar-plugin</artifactId>
					<version>2.3</version>
					<executions>
						<execution>
							<goals>
								<goal>test-jar</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
				<plugin>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.5</version>
					<configuration>
						<forkMode>once</forkMode>
						<argLine>-enableassertions</argLine>
					</configuration>
				</plugin>
			</plugins>
Gabriel Landais's avatar
Gabriel Landais committed
		</pluginManagement>
Gabriel Landais's avatar
Gabriel Landais committed
	</build>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>net.ihe.gazelle.proxy</groupId>
				<artifactId>gazelle-proxy-netty</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
				<type>jar</type>
			</dependency>
			<dependency>
				<groupId>net.ihe.gazelle.proxy</groupId>
				<artifactId>gazelle-proxy-datamodel</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
				<type>jar</type>
			</dependency>
			<dependency>
				<groupId>net.ihe.gazelle.proxy</groupId>
				<artifactId>gazelle-proxy-ejb</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
				<type>ejb</type>
			</dependency>
			<dependency>
				<groupId>net.ihe.gazelle.proxy</groupId>
				<artifactId>gazelle-proxy-war</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
				<type>war</type>
			</dependency>

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

Gabriel Landais's avatar
Gabriel Landais committed
			<dependency>
				<groupId>org.jboss.seam</groupId>
				<artifactId>jboss-seam</artifactId>
				<version>${version.seam}</version>
				<scope>provided</scope>
			</dependency>

			<dependency>
				<groupId>org.jboss.jbossas</groupId>
				<artifactId>jboss-as-component-matrix</artifactId>
				<type>pom</type>
				<scope>import</scope>
				<version>5.1.0.GA</version>
			</dependency>

		</dependencies>
	</dependencyManagement>

	<reporting>
		<plugins>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.6.1</version>
				<configuration>
					<aggregate>true</aggregate>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-surefire-report-plugin
				</artifactId>
				<version>2.5</version>
			</plugin>
		</plugins>
	</reporting>


	<profiles>

		<profile>
Gabriel Landais's avatar
Gabriel Landais committed
			<id>development</id>
Gabriel Landais's avatar
Gabriel Landais committed

			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<properties>
Gabriel Landais's avatar
Gabriel Landais committed
				<cas.service>http://127.0.0.1:8080/proxy/</cas.service>
Gabriel Landais's avatar
Gabriel Landais committed
				<evsclient.url>http://127.0.0.1:8080/EVSClient/</evsclient.url>
Gabriel Landais's avatar
Gabriel Landais committed
				<!-- development mode (disable in production) -->
Gabriel Landais's avatar
Gabriel Landais committed
				<seam.debug>true</seam.debug>
Gabriel Landais's avatar
Gabriel Landais committed

				<!-- datasource configuration -->
				<jdbc.connection.url>jdbc:postgresql://localhost/gazelle-proxy</jdbc.connection.url>
				<jdbc.driver.class>org.postgresql.Driver</jdbc.driver.class>
				<jdbc.user>gazelle</jdbc.user>
				<jdbc.password>gazelle</jdbc.password>
Gabriel Landais's avatar
Gabriel Landais committed
				<min.pool.size>1</min.pool.size>
				<max.pool.size>10</max.pool.size>
Gabriel Landais's avatar
Gabriel Landais committed

Gabriel Landais's avatar
Gabriel Landais committed
				<!-- pki datasource configuration -->
				<jdbc.pki.connection.url>jdbc:postgresql:tls-simulator</jdbc.pki.connection.url>
				<jdbc.pki.user>gazelle</jdbc.pki.user>
				<jdbc.pki.password>gazelle</jdbc.pki.password>
Gabriel Landais's avatar
Gabriel Landais committed

				<!-- package exploded war file -->
Gabriel Landais's avatar
Gabriel Landais committed
				<exploded.war.file>true</exploded.war.file>

				<!-- development mode (exclude in production) -->
				<exclude.bootstrap>false</exclude.bootstrap>
Gabriel Landais's avatar
Gabriel Landais committed

				<!-- persistence.xml configuration -->
				<hibernate.dialect>
					org.hibernate.dialect.PostgreSQLDialect
				</hibernate.dialect>
				<hibernate.hbm2ddl.auto>
					update
				</hibernate.hbm2ddl.auto>
				<hibernate.show_sql>
Gabriel Landais's avatar
Gabriel Landais committed
					true
Gabriel Landais's avatar
Gabriel Landais committed
				</hibernate.show_sql>
			</properties>
		</profile>

		<profile>
			<id>gazelle</id>

			<activation>
				<activeByDefault>false</activeByDefault>
			</activation>

			<properties>
Gabriel Landais's avatar
Gabriel Landais committed
				<cas.service>http://gazelle.ihe.net/proxy/</cas.service>
Gabriel Landais's avatar
Gabriel Landais committed
				<evsclient.url>http://gazelle.ihe.net/EVSClient/</evsclient.url>
Gabriel Landais's avatar
Gabriel Landais committed
				<!-- development mode (disable in production) -->
				<seam.debug>false</seam.debug>

				<!-- datasource configuration -->
				<jdbc.connection.url>jdbc:postgresql://kujira.irisa.fr/gazelle-proxy</jdbc.connection.url>
				<jdbc.driver.class>org.postgresql.Driver</jdbc.driver.class>
				<jdbc.user>gazelle</jdbc.user>
				<jdbc.password>gazelle</jdbc.password>
Gabriel Landais's avatar
 
Gabriel Landais committed
				<min.pool.size>1</min.pool.size>
				<max.pool.size>5</max.pool.size>
Gabriel Landais's avatar
Gabriel Landais committed

Gabriel Landais's avatar
Gabriel Landais committed
				<!-- pki datasource configuration -->
				<jdbc.pki.connection.url>jdbc:postgresql://jumbo.irisa.fr/tls-simulator</jdbc.pki.connection.url>
				<jdbc.pki.user>gazelle</jdbc.pki.user>
				<jdbc.pki.password>gazelle</jdbc.pki.password>

Gabriel Landais's avatar
Gabriel Landais committed
				<!-- development mode (exclude in production) -->
				<exclude.bootstrap>true</exclude.bootstrap>

				<!-- package exploded war file -->
				<exploded.war.file>false</exploded.war.file>

				<!-- persistence.xml configuration -->
				<hibernate.dialect>
					org.hibernate.dialect.PostgreSQLDialect
				</hibernate.dialect>
				<hibernate.hbm2ddl.auto>
					update
				</hibernate.hbm2ddl.auto>
				<hibernate.show_sql>
					false
				</hibernate.show_sql>
			</properties>
		</profile>

		<profile>
Gabriel Landais's avatar
Gabriel Landais committed
			<id>bento</id>
Gabriel Landais's avatar
Gabriel Landais committed

			<activation>
				<activeByDefault>false</activeByDefault>
			</activation>
Gabriel Landais's avatar
Gabriel Landais committed
			<properties>
Gabriel Landais's avatar
Gabriel Landais committed
				<cas.service>http://bento.irisa.fr:8080/proxy/</cas.service>
Gabriel Landais's avatar
Gabriel Landais committed
				<!-- development mode (disable in production) -->
Gabriel Landais's avatar
Gabriel Landais committed
				<seam.debug>false</seam.debug>
Gabriel Landais's avatar
Gabriel Landais committed

				<!-- datasource configuration -->
				<jdbc.connection.url>jdbc:postgresql://localhost/gazelle-proxy</jdbc.connection.url>
				<jdbc.driver.class>org.postgresql.Driver</jdbc.driver.class>
				<jdbc.user>gazelle</jdbc.user>
				<jdbc.password>gazelle</jdbc.password>
Gabriel Landais's avatar
Gabriel Landais committed
				<min.pool.size>10</min.pool.size>
				<max.pool.size>50</max.pool.size>
Gabriel Landais's avatar
Gabriel Landais committed

Gabriel Landais's avatar
Gabriel Landais committed
				<!-- pki datasource configuration -->
				<jdbc.pki.connection.url>jdbc:postgresql://localhost/gazelle-proxy</jdbc.pki.connection.url>
				<jdbc.pki.user>gazelle</jdbc.pki.user>
				<jdbc.pki.password>gazelle</jdbc.pki.password>
Gabriel Landais's avatar
Gabriel Landais committed

				<!-- development mode (exclude in production) -->
Gabriel Landais's avatar
Gabriel Landais committed
				<exclude.bootstrap>true</exclude.bootstrap>

				<!-- package exploded war file -->
				<exploded.war.file>false</exploded.war.file>
Gabriel Landais's avatar
Gabriel Landais committed

				<!-- persistence.xml configuration -->
				<hibernate.dialect>
					org.hibernate.dialect.PostgreSQLDialect
				</hibernate.dialect>
				<hibernate.hbm2ddl.auto>
Gabriel Landais's avatar
Gabriel Landais committed
					update
Gabriel Landais's avatar
Gabriel Landais committed
				</hibernate.hbm2ddl.auto>
				<hibernate.show_sql>
Gabriel Landais's avatar
Gabriel Landais committed
					false
Gabriel Landais's avatar
Gabriel Landais committed
				</hibernate.show_sql>
			</properties>
		</profile>

	</profiles>
	<modules>
		<module>gazelle-proxy-netty</module>
		<module>gazelle-proxy-datamodel</module>
		<module>gazelle-proxy-ejb</module>
		<module>gazelle-proxy-war</module>
		<module>gazelle-proxy-ear</module>
Gabriel Landais's avatar
 
Gabriel Landais committed
		<module>gazelle-proxy-ws</module>
Gabriel Landais's avatar
Gabriel Landais committed
	</modules>
Gabriel Landais's avatar
 
Gabriel Landais committed

	<distributionManagement>
		<repository>
			<id>sumo</id>
			<url>http://gazelle.ihe.net/nexus/content/repositories/releases/</url>
Gabriel Landais's avatar
 
Gabriel Landais committed
			<layout>default</layout>
		</repository>
		<snapshotRepository>
			<id>sumo</id>
			<url>http://gazelle.ihe.net/nexus/content/repositories/snapshots/</url>
Gabriel Landais's avatar
 
Gabriel Landais committed
			<layout>default</layout>
		</snapshotRepository>
	</distributionManagement>

Gabriel Landais's avatar
Gabriel Landais committed
</project>