2016-01-20 08:11:03 -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-11-08 10:36:27 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir</artifactId>
|
2017-09-27 21:23:34 -04:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2014-11-08 10:36:27 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hapi-deployable-pom</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2015-07-05 17:14:15 -04:00
|
|
|
|
2014-11-08 10:36:27 -05:00
|
|
|
<name>HAPI FHIR - Deployable Artifact Parent POM</name>
|
|
|
|
|
2016-01-20 08:11:03 -05:00
|
|
|
<dependencies>
|
|
|
|
</dependencies>
|
|
|
|
|
2015-07-05 17:14:15 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>check-java-api</id>
|
|
|
|
<phase>test</phase>
|
2015-11-23 18:14:56 -05:00
|
|
|
<inherited>true</inherited>
|
2015-07-05 17:14:15 -04:00
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<signature>
|
2017-05-25 15:24:47 -04:00
|
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
2017-08-13 14:39:47 -04:00
|
|
|
<artifactId>java17</artifactId>
|
|
|
|
<version>1.0</version>
|
2015-07-05 17:14:15 -04:00
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2017-05-25 15:24:47 -04:00
|
|
|
<!--
|
|
|
|
<execution>
|
|
|
|
<id>check-android-api</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<signature>
|
|
|
|
<groupId>net.sf.androidscents.signature</groupId>
|
|
|
|
<artifactId>android-api-level-21</artifactId>
|
|
|
|
<version>5.0.1_r2</version>
|
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
-->
|
2015-07-05 17:14:15 -04:00
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-all</artifactId>
|
|
|
|
<version>5.0.4</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2017-10-15 11:27:30 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.basepom.maven</groupId>
|
|
|
|
<artifactId>duplicate-finder-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<printEqualFiles>false</printEqualFiles>
|
|
|
|
<failBuildInCaseOfDifferentContentConflict>true</failBuildInCaseOfDifferentContentConflict>
|
|
|
|
<failBuildInCaseOfEqualContentConflict>true</failBuildInCaseOfEqualContentConflict>
|
|
|
|
<failBuildInCaseOfConflict>true</failBuildInCaseOfConflict>
|
|
|
|
<checkCompileClasspath>true</checkCompileClasspath>
|
|
|
|
<checkRuntimeClasspath>false</checkRuntimeClasspath>
|
|
|
|
<checkTestClasspath>false</checkTestClasspath>
|
|
|
|
<skip>false</skip>
|
|
|
|
<quiet>false</quiet>
|
|
|
|
<preferLocal>true</preferLocal>
|
|
|
|
<useResultFile>true</useResultFile>
|
|
|
|
<resultFileMinClasspathCount>2</resultFileMinClasspathCount>
|
|
|
|
<resultFile>${project.build.directory}/duplicate-finder-result.xml</resultFile>
|
|
|
|
<ignoredDependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>javax.mail-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-commons</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jscience</groupId>
|
|
|
|
<artifactId>jscience</artifactId>
|
|
|
|
</dependency>
|
2017-10-19 07:40:43 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jcl</artifactId>
|
|
|
|
</dependency>
|
2017-10-15 11:27:30 -04:00
|
|
|
</ignoredDependencies>
|
|
|
|
<ignoredResources>
|
|
|
|
<ignoredResource>changelog.txt</ignoredResource>
|
|
|
|
</ignoredResources>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-07-05 17:14:15 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2014-11-08 10:36:27 -05:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
2015-06-21 22:10:13 -04:00
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
2014-11-08 10:36:27 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<id>default</id>
|
|
|
|
<reports>
|
|
|
|
<report>javadoc</report>
|
|
|
|
</reports>
|
|
|
|
<configuration>
|
|
|
|
<links>
|
2014-11-11 17:14:05 -05:00
|
|
|
<link>http://jamesagnew.github.io/hapi-fhir/apidocs/</link>
|
|
|
|
<link>https://docs.oracle.com/javaee/7/api/</link>
|
2014-11-08 10:36:27 -05:00
|
|
|
</links>
|
2015-03-24 17:19:34 -04:00
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
2014-11-08 10:36:27 -05:00
|
|
|
</configuration>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>DIST</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
<configuration>
|
|
|
|
<minmemory>128m</minmemory>
|
|
|
|
<maxmemory>1g</maxmemory>
|
|
|
|
<linksource>true</linksource>
|
|
|
|
<verbose>false</verbose>
|
|
|
|
<debug>false</debug>
|
2015-03-24 17:19:34 -04:00
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
2014-11-08 10:36:27 -05:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>first</id>
|
|
|
|
<goals>
|
|
|
|
<goal>update-file-header</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<licenseName>apache_v2</licenseName>
|
|
|
|
<canUpdateDescription>true</canUpdateDescription>
|
|
|
|
<canUpdateCopyright>true</canUpdateCopyright>
|
|
|
|
<roots>
|
|
|
|
<root>src/main/java</root>
|
|
|
|
</roots>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|