Mentions légales du service

Skip to content
Snippets Groups Projects
pom.xml 1.85 KiB
Newer Older
<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/xsd/maven-4.0.0.xsd">
Gabriel Landais's avatar
Gabriel Landais committed

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

	<modelVersion>4.0.0</modelVersion>

	<groupId>net.ihe.gazelle.proxy</groupId>
	<artifactId>gazelle-proxy-netty</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
	<packaging>jar</packaging>

	<name>gazelle-proxy-netty</name>
	<url>http://maven.apache.org</url>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.jboss.netty</groupId>
			<artifactId>netty</artifactId>
Gabriel Landais's avatar
Gabriel Landais committed
			<version>3.2.5.Final</version>
		</dependency>
		<dependency>
			<groupId>ca.uhn.hapi</groupId>
			<artifactId>hapi-base</artifactId>
			<version>1.2</version>
Gabriel Landais's avatar
Gabriel Landais committed
		</dependency>
		<dependency>
			<groupId>jp.digitalsensation.ihej.transactionmonitor</groupId>
			<artifactId>ihej-dicom</artifactId>
			<version>1.2</version>
		</dependency>
		<dependency>
			<groupId>dcm4che</groupId>
			<artifactId>dcm4che-net</artifactId>
			<version>2.0.25</version>
Gabriel Landais's avatar
Gabriel Landais committed
		</dependency>
Gabriel Landais's avatar
 
Gabriel Landais committed
		<dependency>
			<groupId>org.openhealthtools.openatna</groupId>
			<artifactId>syslog-core</artifactId>
			<version>1.2</version>
		</dependency>
		<dependency>
			<groupId>org.openhealthtools.openatna</groupId>
			<artifactId>syslog-mina</artifactId>
			<version>1.2</version>
			<scope>test</scope>
		</dependency>
Gabriel Landais's avatar
Gabriel Landais committed
		<dependency>
			<groupId>apache-log4j</groupId>
			<artifactId>log4j</artifactId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>