2017-10-19 07:40:43 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
2015-12-20 09:29:52 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-11-29 11:43:09 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-deployable-pom</artifactId>
|
2019-11-12 22:09:21 -05:00
|
|
|
<version>4.2.0-SNAPSHOT</version>
|
2015-11-29 11:43:09 -05:00
|
|
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2016-02-01 08:55:58 -05:00
|
|
|
<artifactId>hapi-fhir-structures-dstu3</artifactId>
|
2018-02-27 12:52:47 -05:00
|
|
|
<packaging>bundle</packaging>
|
2015-11-29 11:43:09 -05:00
|
|
|
|
2016-02-01 08:55:58 -05:00
|
|
|
<name>HAPI FHIR Structures - DSTU3</name>
|
2015-11-29 11:43:09 -05:00
|
|
|
|
2017-10-14 15:42:55 -04:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<show>public</show>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-02-27 12:52:47 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Fragment-Host>
|
|
|
|
ca.uhn.hapi.fhir.hapi-fhir-base
|
|
|
|
</Fragment-Host>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-10-14 15:42:55 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<classFolders>
|
|
|
|
<classFolder>${basedir}/target/classes</classFolder>
|
|
|
|
<classFolder>${basedir}/../hapi-fhir-base/target/classes</classFolder>
|
|
|
|
<classFolder>${basedir}/../hapi-fhir-client/target/classes</classFolder>
|
|
|
|
<classFolder>${basedir}/../hapi-fhir-server/target/classes</classFolder>
|
|
|
|
</classFolders>
|
|
|
|
<sourceFolders>
|
|
|
|
<sourceFolder>${basedir}/src/main/java</sourceFolder>
|
|
|
|
<sourceFolder>${basedir}/../hapi-fhir-base/src/main/java</sourceFolder>
|
|
|
|
<sourceFolder>${basedir}/../hapi-fhir-client/src/main/java</sourceFolder>
|
|
|
|
<sourceFolder>${basedir}/../hapi-fhir-server/src/main/java</sourceFolder>
|
|
|
|
</sourceFolders>
|
|
|
|
<dumpOnExit>true</dumpOnExit>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-prepare-agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2019-11-23 13:51:02 -05:00
|
|
|
<argLine>@{argLine} ${surefire_jvm_args}</argLine>
|
2017-10-14 15:42:55 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- Don't add UHN licenses to RI structures -->
|
|
|
|
<skipUpdateLicense>true</skipUpdateLicense>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-09-22 08:58:17 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<includeDependencySources>true</includeDependencySources>
|
|
|
|
<dependencySourceIncludes>
|
|
|
|
<include>ca.uhn.hapi.fhir:org.hl7.fhir.dstu3</include>
|
|
|
|
</dependencySourceIncludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-10-14 15:42:55 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-11-29 11:43:09 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2015-11-29 11:43:09 -05:00
|
|
|
</dependency>
|
2017-08-13 14:39:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2019-07-14 10:16:40 -04:00
|
|
|
<artifactId>org.hl7.fhir.utilities</artifactId>
|
|
|
|
<version>${fhir_core_version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>org.hl7.fhir.dstu3</artifactId>
|
|
|
|
<version>${fhir_core_version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fhir</groupId>
|
|
|
|
<artifactId>ucum</artifactId>
|
|
|
|
<optional>true</optional>
|
2017-08-13 14:39:47 -04:00
|
|
|
</dependency>
|
|
|
|
<!--
|
2017-10-14 15:42:55 -04:00
|
|
|
Test dependencies on other optional parts of HAPI
|
2017-08-13 14:39:47 -04:00
|
|
|
-->
|
2015-11-29 11:43:09 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2016-02-01 08:55:58 -05:00
|
|
|
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-10-26 06:02:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core-asl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-08-13 14:39:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2017-10-14 15:42:55 -04:00
|
|
|
<!--
|
2016-01-20 08:11:03 -05:00
|
|
|
The JPA project uses a newer API but we'll try to hold to this version
|
|
|
|
as much as possible. See #283.
|
|
|
|
-->
|
2015-11-29 11:43:09 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
2017-10-19 07:40:43 -04:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2019-11-23 10:32:37 -05:00
|
|
|
<version>3.1.0</version>
|
2017-10-26 06:02:12 -04:00
|
|
|
<optional>true</optional>
|
2015-11-29 11:43:09 -05:00
|
|
|
</dependency>
|
|
|
|
|
2017-10-14 15:42:55 -04:00
|
|
|
<!--
|
|
|
|
Android includes an old version of commons-codec, so
|
2017-05-25 15:24:47 -04:00
|
|
|
we compile against the old version to make sure we can compile
|
2017-10-14 15:42:55 -04:00
|
|
|
against it
|
2017-05-25 15:24:47 -04:00
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2017-10-14 15:42:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2019-09-22 08:58:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>ST4</artifactId>
|
|
|
|
<version>4.1</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2017-10-14 15:42:55 -04:00
|
|
|
<!--
|
2015-12-20 09:29:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>xpp3</groupId>
|
|
|
|
<artifactId>xpp3_min</artifactId>
|
|
|
|
<version>1.1.4c</version>
|
2017-10-14 15:42:55 -04:00
|
|
|
<optional>true</optional>
|
2015-12-20 09:29:52 -05:00
|
|
|
</dependency>
|
2017-10-14 15:42:55 -04:00
|
|
|
-->
|
2016-09-08 15:56:15 -04:00
|
|
|
|
2017-10-14 15:42:55 -04:00
|
|
|
<!--
|
2015-12-20 09:29:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
|
|
|
<version>9.6.0-4</version>
|
|
|
|
</dependency>
|
2016-09-08 15:56:15 -04:00
|
|
|
-->
|
2015-12-20 09:29:52 -05:00
|
|
|
|
2018-08-28 05:26:06 -04:00
|
|
|
<!-- Used by the validator -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2015-11-29 11:43:09 -05:00
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
2017-08-13 14:39:47 -04:00
|
|
|
<groupId>org.xmlunit</groupId>
|
|
|
|
<artifactId>xmlunit-core</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2015-12-20 09:29:52 -05:00
|
|
|
<artifactId>jetty-servlet</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2015-12-20 09:29:52 -05:00
|
|
|
<artifactId>jetty-server</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-http</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-06-13 16:15:29 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-test-utilities</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-30 05:45:08 -04:00
|
|
|
|
|
|
|
<!-- Dependencies for Schematron -->
|
2015-11-29 11:43:09 -05:00
|
|
|
<dependency>
|
2018-05-14 17:38:40 -04:00
|
|
|
<groupId>com.helger</groupId>
|
|
|
|
<artifactId>ph-schematron</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-05-14 17:38:40 -04:00
|
|
|
<groupId>com.helger</groupId>
|
|
|
|
<artifactId>ph-commons</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-30 05:45:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>javax.activation-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-12-22 20:13:03 -05:00
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>com.sun.xml.bind</groupId>-->
|
|
|
|
<!--<artifactId>jaxb-core</artifactId>-->
|
|
|
|
<!--<scope>test</scope>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>com.sun.xml.bind</groupId>-->
|
|
|
|
<!--<artifactId>jaxb-impl</artifactId>-->
|
|
|
|
<!--<scope>test</scope>-->
|
|
|
|
<!--</dependency>-->
|
2018-05-30 05:45:08 -04:00
|
|
|
<dependency>
|
2018-12-22 20:13:03 -05:00
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
2019-05-09 12:51:13 -04:00
|
|
|
<scope>test</scope>
|
2018-05-30 05:45:08 -04:00
|
|
|
</dependency>
|
2015-11-29 11:43:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
<!-- UNIT TEST DEPENDENCIES -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
2017-01-29 13:22:28 -05:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
</exclusion>
|
2015-11-29 11:43:09 -05:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
<classifier>jdk15-sources</classifier>
|
|
|
|
<scope>test</scope>
|
2017-01-29 13:22:28 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-11-29 11:43:09 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>directory-naming</groupId>
|
|
|
|
<artifactId>naming-java</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-02-27 07:28:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava-testlib</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-11-21 12:30:51 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-11-29 11:43:09 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|