2014-07-14 08:21:50 -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">
|
2014-02-17 17:58:32 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2014-11-08 10:36:27 -05:00
|
|
|
<artifactId>hapi-deployable-pom</artifactId>
|
|
|
|
<version>0.8-SNAPSHOT</version>
|
|
|
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
2014-02-17 17:58:32 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2014-08-16 17:46:30 -04:00
|
|
|
|
|
|
|
<url>http://jamesagnew.github.io/hapi-fhir/</url>
|
2014-07-15 18:36:13 -04:00
|
|
|
|
|
|
|
<name>HAPI FHIR - Core Library</name>
|
2014-02-17 17:58:32 -05:00
|
|
|
|
2014-03-24 08:32:28 -04:00
|
|
|
<distributionManagement>
|
|
|
|
<site>
|
2014-06-25 13:54:44 -04:00
|
|
|
<id>git.server</id>
|
2014-06-26 18:06:23 -04:00
|
|
|
<url>scm:git:git@github.com:jamesagnew/hapi-fhir.git</url>
|
2014-03-24 08:32:28 -04:00
|
|
|
</site>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- JSON -->
|
2014-03-24 08:32:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.json</groupId>
|
|
|
|
<artifactId>javax.json-api</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.json</artifactId>
|
|
|
|
<version>1.0.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<!-- XML -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core-asl</artifactId>
|
2014-09-03 18:03:44 -04:00
|
|
|
<version>${woodstox_version}</version>
|
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 OpenID Connect Support -->
|
2014-08-11 09:09:01 -04:00
|
|
|
<!--
|
2014-07-31 18:06:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mitre</groupId>
|
|
|
|
<artifactId>openid-connect-client</artifactId>
|
|
|
|
<version>${mitreid-connect-version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-08-05 17:06:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
|
|
<artifactId>spring-security-oauth2</artifactId>
|
|
|
|
<version>2.0.2.RELEASE</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-08-11 09:09:01 -04:00
|
|
|
-->
|
2014-08-08 14:07:03 -04: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-07-02 08:57:07 -04:00
|
|
|
<version>${thymeleaf-version}</version>
|
2014-03-25 18:08:57 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
|
2014-08-08 07:33:12 -04:00
|
|
|
<!-- Only required for CORS support -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ebaysf.web</groupId>
|
|
|
|
<artifactId>cors-filter</artifactId>
|
|
|
|
<version>${ebay_cors_filter_version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
<!--
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
-->
|
|
|
|
</dependency>
|
2014-08-23 16:40:26 -04:00
|
|
|
|
|
|
|
<!-- Only required for Schematron Validator Support -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-schematron</artifactId>
|
|
|
|
<version>${phloc_schematron_version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-09-24 17:36:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-commons</artifactId>
|
|
|
|
<version>${phloc_commons_version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2014-08-23 16:40:26 -04: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 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2014-09-03 18:03:44 -04:00
|
|
|
<version>${commons_lang_version}</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
</dependency>
|
2014-02-19 11:59:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
</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>
|
|
|
|
<version>2.4</version>
|
2014-03-07 09:14:50 -05:00
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
|
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2014-07-18 17:49:14 -04:00
|
|
|
<version>${slf4j_version}</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
</dependency>
|
2014-07-21 10:17:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j_version}</version>
|
|
|
|
</dependency>
|
2014-02-17 17:58:32 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2014-07-21 10:17:07 -04:00
|
|
|
<version>${logback_version}</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
2014-02-27 13:21:47 -05:00
|
|
|
<!-- Client -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2014-03-06 17:12:05 -05:00
|
|
|
<version>4.3.3</version>
|
2014-07-21 10:17:07 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-03-06 17:12:05 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-03-07 17:31:05 -05:00
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
<version>4.3.2</version>
|
2014-02-27 13:21:47 -05:00
|
|
|
</dependency>
|
|
|
|
|
2014-07-02 08:57:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
<version>${spring_version}</version>
|
|
|
|
<optional>true</optional>
|
2014-07-31 18:06:04 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-07-02 08:57:07 -04:00
|
|
|
</dependency>
|
|
|
|
|
2014-03-05 08:26:26 -05:00
|
|
|
<!-- Server -->
|
2014-03-04 08:13:28 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2014-11-08 10:36:27 -05:00
|
|
|
<version>${servlet_api_version}</version>
|
2014-03-05 08:26:26 -05:00
|
|
|
<scope>provided</scope>
|
2014-03-04 08:13:28 -05:00
|
|
|
</dependency>
|
2014-02-27 13:21:47 -05:00
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2014-07-21 09:24:38 -04:00
|
|
|
<version>${junit_version}</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-05-28 16:07:53 -04:00
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
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>
|
|
|
|
</resources>
|
2014-02-17 17:58:32 -05:00
|
|
|
</build>
|
|
|
|
|
2014-05-28 16:07:53 -04:00
|
|
|
<profiles>
|
2014-08-20 22:46:15 -04:00
|
|
|
<profile>
|
|
|
|
<id>MINI</id>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
2014-11-08 10:36:27 -05:00
|
|
|
<id>SITE</id>
|
2014-08-20 22:46:15 -04:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
2014-11-08 10:36:27 -05:00
|
|
|
<!--
|
2014-08-20 22:46:15 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
2014-08-27 08:55:00 -04:00
|
|
|
<version>3.0.0</version>
|
2014-08-20 22:46:15 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>normal</id>
|
|
|
|
<reports>
|
|
|
|
<report>jxr</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
<reportSet>
|
|
|
|
<id>restful-server-example</id>
|
|
|
|
<reports>
|
|
|
|
<report>jxr</report>
|
|
|
|
</reports>
|
|
|
|
<configuration>
|
|
|
|
<sourcePath>../restful-server-example/src/main/java</sourcePath>
|
|
|
|
<destDir>${project.reporting.outputDirectory}/rse-xref</destDir>
|
|
|
|
<outputDirectory>tmp</outputDirectory>
|
|
|
|
<reportOutputDirectory>rse-xref</reportOutputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2014-11-08 10:36:27 -05:00
|
|
|
</plugin>
|
|
|
|
-->
|
2014-08-29 13:05:04 -04:00
|
|
|
<!--
|
2014-08-28 09:44:04 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-linkcheck-plugin</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<forceSite>false</forceSite>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-08-29 13:05:04 -04:00
|
|
|
-->
|
2014-08-20 22:46:15 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
</profile>
|
2014-05-28 16:07:53 -04:00
|
|
|
<profile>
|
|
|
|
<id>DIST</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2014-09-03 18:03:44 -04:00
|
|
|
<version>${maven_assembly_plugin_version}</version>
|
2014-05-28 16:07:53 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<attach>false</attach>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${project.basedir}/src/assembly/hapi-fhir-all.xml</descriptor>
|
|
|
|
<!-- <descriptor>src/assembly/hapi-jdk14.xml</descriptor> -->
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</project>
|