hapi-fhir/hapi-fhir-jaxrsserver-base/pom.xml

104 lines
2.8 KiB
XML
Raw Normal View History

2015-10-02 05:27:21 -04:00
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-deployable-pom</artifactId>
<version>1.3-SNAPSHOT</version>
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
</parent>
<repositories>
<repository>
<id>maven.java.net</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
<url>https://maven.java.net/service/local/repositories/snapshots/content/</url>
</repository>
</repositories>
<artifactId>hapi-fhir-jaxrsserver-base</artifactId>
<packaging>jar</packaging>
<name>HAPI FHIR JAX-RS Server</name>
<dependencies>
<!-- HAPI DEPENDENCIES -->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>1.3-SNAPSHOT</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
2015-10-28 09:08:14 -04:00
<!-- conformance profile -->
2015-10-02 05:27:21 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
<version>1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
2015-10-28 09:08:14 -04:00
<scope>provided</scope>
2015-10-02 05:27:21 -04:00
</dependency>
<dependency>
<groupId>javax.ejb</groupId>
<artifactId>ejb-api</artifactId>
<version>3.0</version>
2015-10-28 09:08:14 -04:00
<scope>provided</scope>
2015-10-02 05:27:21 -04:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
2015-10-28 09:08:14 -04:00
<version>${jetty_version}</version>
2015-10-02 05:27:21 -04:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2015-10-28 09:08:14 -04:00
<artifactId>jetty-servlet</artifactId>
<version>${jetty_version}</version>
2015-10-02 05:27:21 -04:00
<scope>test</scope>
</dependency>
<dependency>
2015-10-28 09:08:14 -04:00
<groupId>org.glassfish.jersey.core</groupId>
2015-10-02 05:27:21 -04:00
<artifactId>jersey-server</artifactId>
2015-10-28 09:08:14 -04:00
<version>${jersey_version}</version>
<scope>test</scope>
2015-10-02 05:27:21 -04:00
</dependency>
<dependency>
2015-10-28 09:08:14 -04:00
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<version>${jersey_version}</version>
2015-10-02 05:27:21 -04:00
<scope>test</scope>
</dependency>
<dependency>
2015-10-28 09:08:14 -04:00
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-jetty-http</artifactId>
<version>${jersey_version}</version>
<scope>test</scope>
2015-10-02 05:27:21 -04:00
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>