2014-02-17 17:58:32 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
2014-04-22 08:58:28 -04:00
|
|
|
<version>7</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2014-04-02 18:42:16 -04:00
|
|
|
<version>0.1</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
<name>HAPI</name>
|
|
|
|
<url>http://hl7api.sourceforge.net/</url>
|
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
</dependencies>
|
|
|
|
|
2014-03-24 08:32:28 -04:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache Software License 2.0</name>
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<modules>
|
|
|
|
<module>hapi-fhir-base</module>
|
2014-03-03 18:22:14 -05:00
|
|
|
<module>hapi-tinder-plugin</module>
|
2014-04-15 08:50:42 -04:00
|
|
|
<!--
|
2014-03-24 08:32:28 -04:00
|
|
|
<module>hapi-tinder-test</module>
|
2014-04-02 18:42:16 -04:00
|
|
|
<module>hapi-fhir-structures-dstu</module>
|
2014-04-15 08:50:42 -04:00
|
|
|
-->
|
2014-02-17 17:58:32 -05:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2014-03-04 18:25:52 -05:00
|
|
|
<maven_javadoc_plugin_version>2.9.1</maven_javadoc_plugin_version>
|
2014-03-24 08:32:28 -04:00
|
|
|
<maven_site_plugin_version>3.3</maven_site_plugin_version>
|
2014-02-17 17:58:32 -05:00
|
|
|
<slf4j_version>1.6.6</slf4j_version>
|
2014-03-20 13:49:51 -04:00
|
|
|
<hamcrest_version>1.3</hamcrest_version>
|
2014-02-17 17:58:32 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2014-03-05 17:35:06 -05:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
2014-02-17 17:58:32 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-03-24 08:32:28 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>${maven_site_plugin_version}</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-ssh</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${maven_javadoc_plugin_version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
</plugin>
|
2014-02-17 17:58:32 -05:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2014-04-22 08:58:28 -04:00
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</build>
|
2014-03-24 08:32:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</project>
|