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>
|
2016-02-03 15:25:32 -05:00
|
|
|
<version>1.4</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>
|
|
|
|
<groupId>org.codehaus.mojo.signature
|
|
|
|
</groupId>
|
|
|
|
<artifactId>java16</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</signature>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-all</artifactId>
|
|
|
|
<version>5.0.4</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</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>
|