hapi-fhir/hapi-tinder-plugin/pom.xml

187 lines
4.8 KiB
XML
Raw Normal View History

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>
2014-12-17 17:04:10 -05:00
<version>0.9-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>
2014-12-17 17:04:10 -05:00
<version>0.9-SNAPSHOT</version>
2014-02-23 18:13:59 -05:00
</dependency>
2014-10-16 17:19:27 -04:00
<!--
2014-10-16 13:41:57 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
<version>0.7-SNAPSHOT</version>
</dependency>
2014-10-16 17:19:27 -04:00
-->
2014-02-20 16:32:04 -05:00
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools</artifactId>
<version>2.0</version>
</dependency>
<dependency>
2014-10-16 13:41:57 -04:00
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava_version}</version>
</dependency>
2014-02-20 16:32:04 -05:00
<!-- General -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons_lang_version}</version>
2014-02-20 16:32:04 -05:00
</dependency>
2014-03-03 18:22:14 -05:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</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>
<version>1.7.6</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</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-03-03 18:22:14 -05:00
<version>3.2.1</version>
</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>
</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-03-03 18:22:14 -05:00
<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId>
<version>3.2</version> <configuration> <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