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>
|
2024-07-16 12:43:14 -04:00
|
|
|
<version>7.5.0-SNAPSHOT</version>
|
2023-04-02 11:50:20 -04:00
|
|
|
|
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>
|
2020-12-18 16:48:44 -05:00
|
|
|
<_nouses>true</_nouses>
|
|
|
|
<_removeheaders>Built-By, Include-Resource, Private-Package, Require-Capability</_removeheaders>
|
|
|
|
<!-- No need to disable normal OSGi class loading
|
2018-02-27 12:52:47 -05:00
|
|
|
<Fragment-Host>
|
|
|
|
ca.uhn.hapi.fhir.hapi-fhir-base
|
|
|
|
</Fragment-Host>
|
2020-12-18 16:48:44 -05:00
|
|
|
-->
|
2018-02-27 12:52:47 -05:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-10-14 15:42:55 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
</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>
|
2021-10-16 18:34:08 -04:00
|
|
|
<additionalDependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>${okhttp_version}</version>
|
|
|
|
</dependency>
|
|
|
|
</additionalDependencies>
|
2019-09-22 08:58:17 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-10-14 15:42:55 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-12-23 14:23:36 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>CI</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
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>
|
2022-11-09 14:47:23 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-caching-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-07-14 10:16:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.fhir</groupId>
|
|
|
|
<artifactId>ucum</artifactId>
|
|
|
|
<optional>true</optional>
|
2020-07-04 18:28:16 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
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>
|
2020-11-27 19:49:06 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core</artifactId>
|
2017-10-26 06:02:12 -04:00
|
|
|
<scope>test</scope>
|
2020-11-27 19:49:06 -05:00
|
|
|
</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>
|
2023-12-03 11:15:37 -05:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
<version>6.0.0</version>
|
2017-10-26 06:02:12 -04:00
|
|
|
<optional>true</optional>
|
2015-11-29 11:43:09 -05:00
|
|
|
</dependency>
|
|
|
|
|
2020-03-23 10:34:12 -04:00
|
|
|
<!--
|
2022-12-20 12:05:15 -05:00
|
|
|
Optional dependencies used by org.hl7.fhir.r4b
|
|
|
|
We include these here to get the aggregate JavaDoc to work
|
2020-03-23 10:34:12 -04:00
|
|
|
-->
|
2022-12-20 12:05:15 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2020-03-23 10:34:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2017-10-14 15:42:55 -04:00
|
|
|
<dependency>
|
2023-09-19 14:26:20 -04:00
|
|
|
<groupId>org.ogce</groupId>
|
2017-10-14 15:42:55 -04:00
|
|
|
<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>
|
|
|
|
|
2022-11-09 14:47:23 -05:00
|
|
|
<!-- Testing -->
|
2018-08-28 05:26:06 -04:00
|
|
|
<dependency>
|
2022-11-09 14:47:23 -05:00
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-caching-testing</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
2018-08-28 05:26:06 -04:00
|
|
|
</dependency>
|
|
|
|
|
2015-11-29 11:43:09 -05:00
|
|
|
<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>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>
|
2023-12-03 11:15:37 -05:00
|
|
|
<dependency>
|
2019-06-13 16:15:29 -04:00
|
|
|
<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>
|
2023-12-03 11:15:37 -05:00
|
|
|
<groupId>com.helger.schematron</groupId>
|
|
|
|
<artifactId>ph-schematron-api</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-12-03 11:15:37 -05:00
|
|
|
<groupId>com.helger.schematron</groupId>
|
|
|
|
<artifactId>ph-schematron-xslt</artifactId>
|
2015-11-29 11:43:09 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-30 05:45:08 -04:00
|
|
|
<dependency>
|
2023-12-03 11:15:37 -05:00
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
2018-05-30 05:45:08 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|
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>
|