2014-02-17 17:58:32 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-05-11 21:46:36 -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/maven-v4_0_0.xsd">
|
2014-02-17 17:58:32 -05:00
|
|
|
|
|
|
|
<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-05-11 21:46:36 -04:00
|
|
|
<version>0.3</version>
|
2014-02-17 17:58:32 -05:00
|
|
|
<name>HAPI</name>
|
2014-04-24 12:25:47 -04:00
|
|
|
<url>http://hl7api.sourceforge.net/hapi-fhir/</url>
|
2014-05-11 21:46:36 -04:00
|
|
|
|
2014-04-24 12:25:47 -04:00
|
|
|
<organization>
|
|
|
|
<name>University Health Network</name>
|
|
|
|
<url>http://www.uhn.ca</url>
|
|
|
|
</organization>
|
2014-05-11 21:46:36 -04:00
|
|
|
|
2014-04-24 12:25:47 -04:00
|
|
|
<inceptionYear>2014</inceptionYear>
|
2014-05-11 21:46:36 -04:00
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
<description>
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
</dependencies>
|
|
|
|
|
2014-04-23 15:24:31 -04:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>James Agnew</name>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<name>Dmitri Sotnikov</name>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<name>Lisa Wong</name>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<name>Josh Mandel</name>
|
|
|
|
<url></url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
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-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-05-05 08:57:43 -04:00
|
|
|
<module>hapi-fhir-jpaserver-base</module>
|
|
|
|
<module>hapi-fhir-jpaserver-test</module>
|
2014-05-11 21:46:36 -04:00
|
|
|
<module>restful-server-example</module>
|
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>
|
2014-05-11 21:46:36 -04:00
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
<skipDeploy>true</skipDeploy>
|
|
|
|
</configuration>
|
2014-03-24 08:32:28 -04:00
|
|
|
</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-04-24 12:25:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<configuration>
|
|
|
|
<verbose>false</verbose>
|
|
|
|
<addSvnKeyWords>false</addSvnKeyWords>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-02-17 17:58:32 -05:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2014-04-22 08:58:28 -04:00
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</build>
|
2014-03-24 08:32:28 -04:00
|
|
|
|
2014-04-24 07:24:27 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>SIGN_ARTIFACTS</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>gpg.passphrase</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<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>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2014-03-24 08:32:28 -04:00
|
|
|
|
2014-02-17 17:58:32 -05:00
|
|
|
</project>
|