2014-12-04 11:21:08 -05: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>
|
2015-05-08 08:54:40 -04:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2014-12-04 11:21:08 -05:00
|
|
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2015-02-16 11:33:46 -05:00
|
|
|
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
|
2014-12-04 11:21:08 -05:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2015-02-16 11:33:46 -05:00
|
|
|
<name>HAPI FHIR Structures - HL7.org DSTU2</name>
|
2014-12-04 11:21:08 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2015-05-08 08:54:40 -04:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2014-12-04 11:21:08 -05:00
|
|
|
</dependency>
|
2015-05-01 13:07:47 -04:00
|
|
|
|
2014-12-04 11:21:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>${servlet_api_version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2015-04-22 07:46:33 -04:00
|
|
|
|
|
|
|
<!--
|
2015-03-05 05:54:07 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>saxon</artifactId>
|
|
|
|
<version>8.7</version>
|
2015-05-01 13:07:47 -04:00
|
|
|
</dependency>
|
2015-04-22 07:46:33 -04:00
|
|
|
-->
|
2015-03-05 05:54:07 -05:00
|
|
|
|
2015-02-16 11:33:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3_min</artifactId>
|
|
|
|
<version>1.1.4c</version>
|
|
|
|
</dependency>
|
2015-03-09 03:53:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
|
|
|
<version>9.6.0-4</version>
|
|
|
|
</dependency>
|
2015-02-16 11:33:46 -05:00
|
|
|
|
2014-12-04 11:21:08 -05:00
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<version>${jetty_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${jetty_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${jetty_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${jetty_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<version>${jetty_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-05-01 13:07:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-http</artifactId>
|
2014-12-04 11:21:08 -05:00
|
|
|
<version>${jetty_version}</version>
|
2015-05-01 13:07:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-12-04 11:21:08 -05:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>${logback_version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ebaysf.web</groupId>
|
|
|
|
<artifactId>cors-filter</artifactId>
|
|
|
|
<version>${ebay_cors_filter_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf</artifactId>
|
|
|
|
<version>${thymeleaf-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-05-01 13:07:47 -04:00
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-schematron</artifactId>
|
|
|
|
<version>${phloc_schematron_version}</version>
|
2014-12-04 11:21:08 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-05-01 13:07:47 -04:00
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-commons</artifactId>
|
|
|
|
<version>${phloc_commons_version}</version>
|
2014-12-04 11:21:08 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-05-01 13:07:47 -04:00
|
|
|
|
2014-12-04 11:21:08 -05:00
|
|
|
|
|
|
|
<!-- UNIT TEST DEPENDENCIES -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<classifier>jdk15-sources</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>directory-naming</groupId>
|
|
|
|
<artifactId>naming-java</artifactId>
|
|
|
|
<version>0.8</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
2015-01-29 14:37:55 -05:00
|
|
|
<artifactId>java-hamcrest</artifactId>
|
2014-12-04 11:21:08 -05:00
|
|
|
<version>${hamcrest_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>${guava_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-05-01 13:07:47 -04:00
|
|
|
<!-- <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId>
|
|
|
|
<version>${spring_security_version}</version> <scope>test</scope> </dependency>
|
|
|
|
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifactId>
|
|
|
|
<version>${spring_security_version}</version> <scope>test</scope> </dependency>
|
|
|
|
<dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-jwt</artifactId>
|
|
|
|
<version>1.0.2.RELEASE</version> <scope>test</scope> </dependency> -->
|
|
|
|
|
2014-12-04 11:21:08 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|