2014-12-03 17:09:13 -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">
|
2014-02-17 17:58:32 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2014-10-29 15:34:59 -04:00
|
|
|
<artifactId>hapi-deployable-pom</artifactId>
|
2022-11-28 07:52:12 -05:00
|
|
|
<version>6.3.2-SNAPSHOT</version>
|
2014-10-29 15:34:59 -04:00
|
|
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
2014-02-17 17:58:32 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2018-02-27 12:52:47 -05:00
|
|
|
<packaging>bundle</packaging>
|
2014-12-03 17:09:13 -05:00
|
|
|
|
2014-08-16 17:46:30 -04:00
|
|
|
<url>http://jamesagnew.github.io/hapi-fhir/</url>
|
2014-12-03 17:09:13 -05:00
|
|
|
|
2014-07-15 18:36:13 -04:00
|
|
|
<name>HAPI FHIR - Core Library</name>
|
2014-02-17 17:58:32 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2021-09-21 11:36:08 -04:00
|
|
|
<!-- IMPORTANT NOTE: This pom is used by multiple platforms (including Android) so please avoid adding any new
|
|
|
|
dependencies here. -->
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<!-- JSON -->
|
2021-06-15 10:36:05 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
</dependency>
|
2014-03-24 08:32:28 -04:00
|
|
|
<dependency>
|
2020-03-17 17:27:26 -04:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2014-03-24 08:32:28 -04:00
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
<!-- XML -->
|
|
|
|
<dependency>
|
2020-11-27 19:49:06 -05:00
|
|
|
<groupId>com.fasterxml.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core</artifactId>
|
2017-10-26 06:02:12 -04:00
|
|
|
<optional>true</optional>
|
2014-02-17 17:58:32 -05:00
|
|
|
</dependency>
|
2014-02-23 18:13:59 -05:00
|
|
|
|
2014-07-31 18:06:04 -04:00
|
|
|
<!-- Only required for narrative generator support -->
|
2014-03-25 18:08:57 -04:00
|
|
|
<dependency>
|
2014-04-24 07:24:27 -04:00
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf</artifactId>
|
2014-03-25 18:08:57 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-10-29 15:38:19 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
|
2014-08-23 16:40:26 -04:00
|
|
|
<!-- Only required for Schematron Validator Support -->
|
|
|
|
<dependency>
|
2018-05-14 17:38:40 -04:00
|
|
|
<groupId>com.helger</groupId>
|
|
|
|
<artifactId>ph-schematron</artifactId>
|
2014-08-23 16:40:26 -04:00
|
|
|
<optional>true</optional>
|
2018-12-22 20:13:03 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-08-23 16:40:26 -04:00
|
|
|
</dependency>
|
2014-09-24 17:36:59 -04:00
|
|
|
<dependency>
|
2018-05-14 17:38:40 -04:00
|
|
|
<groupId>com.helger</groupId>
|
|
|
|
<artifactId>ph-commons</artifactId>
|
2014-09-24 17:36:59 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-08-23 16:40:26 -04:00
|
|
|
|
2014-12-03 17:09:13 -05:00
|
|
|
<!-- <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId>
|
|
|
|
<version>2.11.0</version> <optional>true</optional> </dependency> -->
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<!-- General -->
|
2019-05-28 11:40:21 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2019-09-22 15:52:49 -04:00
|
|
|
|
|
|
|
<!-- JENA Dependencies - Used for Turtle encoding -->
|
2014-02-17 17:58:32 -05:00
|
|
|
<dependency>
|
2019-05-28 11:37:01 -04:00
|
|
|
<groupId>org.apache.jena</groupId>
|
2021-04-27 07:03:24 -04:00
|
|
|
<artifactId>jena-core</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.jena</groupId>
|
|
|
|
<artifactId>jena-arq</artifactId>
|
2019-06-14 06:24:11 -04:00
|
|
|
<optional>true</optional>
|
2014-02-17 17:58:32 -05:00
|
|
|
</dependency>
|
2019-09-22 15:52:49 -04:00
|
|
|
|
2018-09-07 15:30:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
</dependency>
|
2014-02-19 11:59:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
2014-03-07 09:14:50 -05:00
|
|
|
<dependency>
|
2014-03-07 17:31:05 -05:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2014-03-07 09:14:50 -05:00
|
|
|
</dependency>
|
2017-11-25 17:52:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
|
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2014-07-21 10:17:07 -04:00
|
|
|
<dependency>
|
2014-12-03 17:09:13 -05:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
2014-07-21 10:17:07 -04:00
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2021-01-11 20:42:41 -05:00
|
|
|
<!-- @Nonnull annotation -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-10-14 19:14:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-09-22 15:52:49 -04:00
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2015-10-05 15:18:59 -04:00
|
|
|
<plugins>
|
2016-06-15 17:34:50 -04:00
|
|
|
<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>
|
2016-06-15 17:34:50 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
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>
|
|
|
|
<DynamicImport-Package>*</DynamicImport-Package>
|
2018-02-27 12:52:47 -05:00
|
|
|
<Import-Package>
|
|
|
|
<!--required when using servers-->
|
|
|
|
ca.uhn.fhir.rest.api.server;resolution:=optional,
|
|
|
|
ca.uhn.fhir.model.api;resolution:=optional,
|
|
|
|
*
|
|
|
|
</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-01-17 16:05:54 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>standard</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>downstream</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>create-metadata</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/generated-sources/properties</outputDirectory>
|
|
|
|
<outputName>ca/uhn/fhir/hapi-fhir-base-build.properties</outputName>
|
|
|
|
<revisionPropertyName>hapifhir.buildnumber</revisionPropertyName>
|
|
|
|
<timestampPropertyName>hapifhir.timestamp</timestampPropertyName>
|
|
|
|
<timestampFormat>yyyy-MM-dd'T'HH:mm:ss.SXXX</timestampFormat>
|
|
|
|
<versionPropertyName>hapifhir.version</versionPropertyName>
|
2019-11-02 16:15:37 -04:00
|
|
|
<revisionOnScmFailure>UNKNOWN</revisionOnScmFailure>
|
2019-01-17 16:05:54 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-10-05 15:18:59 -04:00
|
|
|
</plugins>
|
2014-04-14 16:26:00 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2014-04-15 08:50:42 -04:00
|
|
|
<directory>src/main/resources</directory>
|
2014-04-14 16:26:00 -04:00
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
2019-01-17 16:05:54 -05:00
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/generated-sources/properties</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
</resource>
|
2014-04-14 16:26:00 -04:00
|
|
|
</resources>
|
2014-02-17 17:58:32 -05:00
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|