2014-03-03 18:22:14 -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-20 16:32:04 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir</artifactId>
|
2015-09-19 11:00:57 -04:00
|
|
|
<version>1.3-SNAPSHOT</version>
|
2014-02-20 16:32:04 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2014-02-26 17:13:49 -05:00
|
|
|
<artifactId>hapi-tinder-plugin</artifactId>
|
2014-03-03 18:22:14 -05:00
|
|
|
<packaging>maven-plugin</packaging>
|
|
|
|
<!-- <packaging>jar</packaging> -->
|
2014-02-20 16:32:04 -05:00
|
|
|
|
2014-03-03 18:22:14 -05:00
|
|
|
<name>HAPI Tinder Plugin</name>
|
2014-02-20 16:32:04 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-03-03 18:22:14 -05:00
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2015-09-19 11:00:57 -04:00
|
|
|
<version>1.3-SNAPSHOT</version>
|
2014-02-23 18:13:59 -05:00
|
|
|
</dependency>
|
2014-12-18 13:40:31 -05:00
|
|
|
<!--
|
2015-03-16 17:02:44 -04:00
|
|
|
Because Tinder is a part of the HAPI FHIR build process (it generates
|
|
|
|
a bunch of the actual HAPI structure code), but also uses HAPI FHIR
|
|
|
|
in order to run (e.g. to load ValueSet resources), we keep the dependencies
|
|
|
|
for the structures
|
|
|
|
a version behind the main library. This is weird, but it works.
|
|
|
|
-->
|
2014-10-16 13:41:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-dstu</artifactId>
|
2015-07-25 11:56:47 -04:00
|
|
|
<version>1.1</version>
|
2014-12-18 08:21:07 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2015-03-16 17:02:44 -04:00
|
|
|
<artifactId>hapi-fhir-structures-dstu2</artifactId>
|
2015-07-25 11:56:47 -04:00
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
|
|
|
|
<version>1.1</version>
|
2014-10-16 13:41:57 -04:00
|
|
|
</dependency>
|
2014-12-18 13:40:31 -05:00
|
|
|
|
2014-02-20 16:32:04 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity-tools</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2014-08-25 09:11:28 -04:00
|
|
|
<dependency>
|
2014-10-16 13:41:57 -04:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2014-08-25 09:11:28 -04:00
|
|
|
</dependency>
|
2014-02-20 16:32:04 -05:00
|
|
|
|
|
|
|
<!-- General -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
2014-03-03 18:22:14 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2014-03-13 17:33:12 -04:00
|
|
|
|
2014-02-20 16:32:04 -05:00
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Maven -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-project</artifactId>
|
2014-03-03 18:22:14 -05:00
|
|
|
<version>2.2.1</version>
|
2014-02-20 16:32:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2014-12-23 09:42:16 -05:00
|
|
|
<version>3.2.5</version>
|
2014-02-24 13:55:44 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-03-03 18:22:14 -05:00
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
<scope>provided</scope>
|
2014-02-24 13:55:44 -05:00
|
|
|
</dependency>
|
2015-04-01 16:03:54 -04:00
|
|
|
|
|
|
|
<!-- This is just used for -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ini4j</groupId>
|
|
|
|
<artifactId>ini4j</artifactId>
|
|
|
|
<version>0.5.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2014-02-20 16:32:04 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven_version>3.1.1</maven_version>
|
|
|
|
</properties>
|
|
|
|
|
2014-03-13 17:33:12 -04:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>report</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2014-02-20 16:32:04 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-03-13 17:33:12 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<!-- see http://jira.codehaus.org/browse/MNG-5346 -->
|
|
|
|
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
|
|
|
</configuration>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>mojo-descriptor</id>
|
|
|
|
<goals>
|
|
|
|
<goal>descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-02-20 16:32:04 -05:00
|
|
|
</plugins>
|
2014-07-02 18:01:29 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2014-10-16 13:41:57 -04:00
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings
|
|
|
|
only. It has no influence on the Maven build itself. -->
|
2014-07-02 18:01:29 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<configuration>
|
|
|
|
<lifecycleMappingMetadata>
|
|
|
|
<pluginExecutions>
|
|
|
|
<pluginExecution>
|
|
|
|
<pluginExecutionFilter>
|
|
|
|
<groupId>
|
|
|
|
org.apache.maven.plugins
|
|
|
|
</groupId>
|
|
|
|
<artifactId>
|
|
|
|
maven-plugin-plugin
|
|
|
|
</artifactId>
|
|
|
|
<versionRange>
|
|
|
|
[3.2,)
|
|
|
|
</versionRange>
|
|
|
|
<goals>
|
|
|
|
<goal>descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
</pluginExecutionFilter>
|
|
|
|
<action>
|
|
|
|
<ignore></ignore>
|
|
|
|
</action>
|
|
|
|
</pluginExecution>
|
|
|
|
</pluginExecutions>
|
|
|
|
</lifecycleMappingMetadata>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2014-02-20 16:32:04 -05:00
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|
2014-03-03 18:22:14 -05:00
|
|
|
|