<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.ihe.gazelle.maven</groupId> <artifactId>gazelle-seam</artifactId> <version>1.37</version> </parent> <groupId>net.ihe.gazelle.proxy</groupId> <artifactId>gazelle-proxy</artifactId> <packaging>pom</packaging> <version>1.0</version> <scm> <connection>scm:svn:svn://scm.gforge.inria.fr/svn/gazelle/Maven/gazelle-proxy/tags/gazelle-proxy-1.0</connection> <developerConnection>scm:svn:svn+ssh://scm.gforge.inria.fr/svn/gazelle/Maven/gazelle-proxy/tags/gazelle-proxy-1.0</developerConnection> </scm> <properties> <jdbc.driver.class>org.postgresql.Driver</jdbc.driver.class> <hibernate.dialect>org.hibernate.dialect.PostgreSQLDialect</hibernate.dialect> <build.year>2012</build.year> <version.datatable>1.7</version.datatable> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>net.ihe.gazelle.proxy</groupId> <artifactId>gazelle-proxy-netty</artifactId> <version>1.0</version> <type>jar</type> </dependency> <dependency> <groupId>net.ihe.gazelle.proxy</groupId> <artifactId>gazelle-proxy-jar</artifactId> <version>1.0</version> <type>ejb</type> </dependency> <dependency> <groupId>net.ihe.gazelle.proxy</groupId> <artifactId>gazelle-proxy-ejb</artifactId> <version>1.0</version> <type>ejb</type> </dependency> <dependency> <groupId>net.ihe.gazelle.proxy</groupId> <artifactId>gazelle-proxy-common-war</artifactId> <version>1.0</version> <type>war</type> </dependency> <dependency> <groupId>net.ihe.gazelle.proxy</groupId> <artifactId>gazelle-proxy-war</artifactId> <version>1.0</version> <type>war</type> </dependency> <dependency> <groupId>net.ihe.gazelle.datable</groupId> <artifactId>gazelle-datatable-jar</artifactId> <version>${version.datatable}</version> <type>ejb</type> </dependency> <dependency> <groupId>net.ihe.gazelle.datable</groupId> <artifactId>gazelle-datatable-war</artifactId> <version>${version.datatable}</version> <type>war</type> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.7</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <profiles> <profile> <id>development</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <cas.service>http://127.0.0.1:8080/proxy/</cas.service> <evsclient.url>http://gazelle.ihe.net/EVSClient/</evsclient.url> <dicom.storage>/tmp/DICOM</dicom.storage> <storage.tmp>/tmp</storage.tmp> <!-- development mode (disable in production) --> <seam.debug>true</seam.debug> <!-- datasource configuration --> <jdbc.connection.url>jdbc:postgresql://localhost/gazelle-proxy</jdbc.connection.url> <jdbc.user>gazelle</jdbc.user> <jdbc.password>gazelle</jdbc.password> <min.pool.size>1</min.pool.size> <max.pool.size>10</max.pool.size> <!-- persistence.xml configuration --> <hibernate.hbm2ddl.auto> update </hibernate.hbm2ddl.auto> <hibernate.show_sql> true </hibernate.show_sql> </properties> <!-- <build> <plugins> <plugin> <artifactId>maven-ear-plugin</artifactId> <configuration> <includeTransitiveLibs>false</includeTransitiveLibs> <outputDirectory>${jboss.deploy}</outputDirectory> <transitiveLibsOutputDirectory>${jboss.libs}</transitiveLibsOutputDirectory> </configuration> </plugin> </plugins> </build> --> </profile> <profile> <id>gazelle</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <cas.service>http://gazelle.ihe.net/proxy/</cas.service> <evsclient.url>http://gazelle.ihe.net/EVSClient/</evsclient.url> <dicom.storage>/opt/proxy/DICOM</dicom.storage> <storage.tmp>/opt/proxy/tmp</storage.tmp> <!-- 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.user>gazelle</jdbc.user> <jdbc.password>gazelle</jdbc.password> <min.pool.size>1</min.pool.size> <max.pool.size>5</max.pool.size> <!-- persistence.xml configuration --> <hibernate.hbm2ddl.auto> update </hibernate.hbm2ddl.auto> <hibernate.show_sql> false </hibernate.show_sql> </properties> </profile> </profiles> <modules> <module>gazelle-proxy-netty</module> <module>gazelle-proxy-jar</module> <module>gazelle-proxy-ejb</module> <module>gazelle-proxy-common-war</module> <module>gazelle-proxy-war</module> <module>gazelle-proxy-ear</module> </modules> </project>