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>
|
2017-09-27 21:23:34 -04:00
|
|
|
<version>3.1.0-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>
|
|
|
|
<packaging>jar</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>
|
|
|
|
|
|
|
|
<!-- JSON -->
|
2014-03-24 08:32:28 -04:00
|
|
|
<dependency>
|
2016-09-17 13:40:03 -04:00
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2014-03-24 08:32:28 -04:00
|
|
|
</dependency>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<!-- XML -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core-asl</artifactId>
|
|
|
|
</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>
|
2014-12-03 17:09:13 -05:00
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-schematron</artifactId>
|
2014-08-23 16:40:26 -04:00
|
|
|
<optional>true</optional>
|
2017-01-29 13:22:28 -05:00
|
|
|
<exclusions><!--
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
</exclusion>-->
|
|
|
|
</exclusions>
|
2014-08-23 16:40:26 -04:00
|
|
|
</dependency>
|
2014-09-24 17:36:59 -04:00
|
|
|
<dependency>
|
2014-12-03 17:09:13 -05:00
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-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 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</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>
|
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>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2015-10-05 15:18:59 -04:00
|
|
|
<plugins>
|
2016-06-14 22:03:24 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<classFolders>
|
|
|
|
<classFolder>${basedir}/target/classes</classFolder>
|
|
|
|
</classFolders>
|
|
|
|
<sourceFolders>
|
|
|
|
<sourceFolder>${basedir}/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>
|
2016-06-15 17:34:50 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>${argLine} -Dfile.encoding=UTF-8 -Xmx712m</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-10-05 15:18:59 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</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>
|
|
|
|
</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-10-30 13:57:29 -04:00
|
|
|
<id>SITE</id>
|
2014-08-20 22:46:15 -04:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
2015-06-24 12:26:40 -04:00
|
|
|
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<reportSets> <reportSet> <reports> <report>checkstyle</report> </reports>
|
|
|
|
</reportSet> </reportSets> <configuration> <linkXRef>false</linkXRef> <sourceDirectories>
|
|
|
|
<sourceDirectory>hapi-fhir-base/src/main/java</sourceDirectory> </sourceDirectories>
|
|
|
|
</configuration> </plugin> -->
|
2015-06-21 00:48:10 -04:00
|
|
|
<!--<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<version>3.0.0</version> <configuration> </configuration> </plugin> -->
|
2015-03-02 06:56:16 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
2015-03-17 08:11:42 -04:00
|
|
|
<version>${maven_jxr_plugin_version}</version>
|
2015-03-02 06:56:16 -05:00
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>normal</id>
|
|
|
|
<reports>
|
|
|
|
<report>jxr</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
2015-06-21 00:48:10 -04:00
|
|
|
<!-- <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> -->
|
2015-03-02 06:56:16 -05:00
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
2014-12-03 17:09:13 -05:00
|
|
|
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-linkcheck-plugin</artifactId>
|
|
|
|
<version>1.1</version> <configuration> <forceSite>false</forceSite> </configuration>
|
|
|
|
</plugin> -->
|
2015-06-24 08:22:05 -04:00
|
|
|
|
|
|
|
|
2015-06-24 12:26:40 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>checkstyle</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
<configuration>
|
|
|
|
<linkXRef>false</linkXRef>
|
2015-09-12 00:42:47 -04:00
|
|
|
<configLocation>${project.basedir}/../src/checkstyle/checkstyle.xml</configLocation>
|
2015-06-24 12:26:40 -04:00
|
|
|
<!--<sourceDirectories> <sourceDirectory> ${project.basedir}/../hapi-fhir-base/src/main/java
|
|
|
|
</sourceDirectory> </sourceDirectories> -->
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-06-24 08:22:05 -04:00
|
|
|
|
|
|
|
|
2014-08-20 22:46:15 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
</profile>
|
2014-05-28 16:07:53 -04:00
|
|
|
</profiles>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</project>
|