2015-07-07 17:27:10 -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/xsd/maven-4.0.0.xsd" >
<modelVersion > 4.0.0</modelVersion>
2015-09-13 22:06:31 -04:00
<!-- Note: HAPI projects use the "hapi - fhir" POM as their base to provide easy management. You do not need to use this in your own projects, so the "parent" tag
and it's contents below may be removed if you are using this file as a basis for your own project. -->
2015-07-07 17:27:10 -04:00
<parent >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-07-07 17:27:10 -04:00
<relativePath > ../pom.xml</relativePath>
</parent>
2015-08-31 08:20:24 -04:00
<artifactId > hapi-fhir-cli</artifactId>
2015-07-07 17:27:10 -04:00
<packaging > jar</packaging>
2015-08-31 08:20:24 -04:00
<name > HAPI FHIR - Command Line Client</name>
2015-07-07 17:27:10 -04:00
<dependencies >
<!-- This dependency includes the core HAPI - FHIR classes -->
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-base</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-07-07 17:27:10 -04:00
</dependency>
2015-09-11 16:13:40 -04:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-jpaserver-example</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-09-11 16:13:40 -04:00
<type > war</type>
</dependency>
2015-09-13 22:06:31 -04:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-structures-dstu</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-09-13 22:06:31 -04:00
</dependency>
2015-07-07 17:27:10 -04:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-structures-dstu2</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-07-07 17:27:10 -04:00
</dependency>
2015-08-28 15:36:56 -04:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-structures-hl7org-dstu2</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-08-31 08:20:24 -04:00
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
2015-09-16 11:46:17 -04:00
<artifactId > hapi-fhir-validation-resources-dstu2</artifactId>
2015-11-15 20:11:05 -05:00
<version > 1.4-SNAPSHOT</version>
2015-07-07 17:27:10 -04:00
</dependency>
<dependency >
<groupId > ch.qos.logback</groupId>
<artifactId > logback-classic</artifactId>
</dependency>
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
</dependency>
2015-08-31 08:20:24 -04:00
2015-09-11 16:13:40 -04:00
<dependency >
<groupId > commons-cli</groupId>
<artifactId > commons-cli</artifactId>
</dependency>
2015-08-31 08:20:24 -04:00
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-core</artifactId>
<exclusions >
<exclusion >
<artifactId > commons-logging</artifactId>
<groupId > commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
2015-09-11 16:13:40 -04:00
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-servlets</artifactId>
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-servlet</artifactId>
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-server</artifactId>
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-util</artifactId>
</dependency>
<dependency >
<groupId > org.eclipse.jetty</groupId>
<artifactId > jetty-webapp</artifactId>
</dependency>
2015-10-15 08:27:58 -04:00
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-api</artifactId>
</dependency>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-client</artifactId>
</dependency>
2015-09-13 22:06:31 -04:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > jcl-over-slf4j</artifactId>
</dependency>
<dependency >
<groupId > org.thymeleaf</groupId>
<artifactId > thymeleaf</artifactId>
</dependency>
2015-09-11 16:13:40 -04:00
2015-09-13 22:06:31 -04:00
<dependency >
<groupId > org.ebaysf.web</groupId>
<artifactId > cors-filter</artifactId>
</dependency>
<dependency >
<groupId > com.phloc</groupId>
<artifactId > phloc-schematron</artifactId>
</dependency>
<dependency >
<groupId > com.phloc</groupId>
<artifactId > phloc-commons</artifactId>
</dependency>
<dependency >
<groupId > org.fusesource.jansi</groupId>
<artifactId > jansi</artifactId>
</dependency>
2015-07-07 17:27:10 -04:00
</dependencies>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-09-11 16:13:40 -04:00
<artifactId > maven-dependency-plugin</artifactId>
<executions >
<execution >
<id > copy</id>
<phase > process-resources</phase>
<goals >
<goal > copy</goal>
</goals>
<configuration >
<artifactItems >
<artifactItem >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-jpaserver-example</artifactId>
2015-11-20 04:30:10 -05:00
<version > 1.4-SNAPSHOT</version>
2015-09-11 16:13:40 -04:00
<type > war</type>
<overWrite > true</overWrite>
<outputDirectory > target/classes</outputDirectory>
<destFileName > hapi-fhir-jpaserver-example.war</destFileName>
</artifactItem>
</artifactItems>
<!-- other configurations here -->
</configuration>
</execution>
</executions>
2015-07-07 17:27:10 -04:00
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-09-11 16:13:40 -04:00
<artifactId > maven-deploy-plugin</artifactId>
2015-07-07 17:27:10 -04:00
<configuration >
2015-09-11 16:13:40 -04:00
<skip > true</skip>
2015-07-07 17:27:10 -04:00
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
2015-09-11 16:13:40 -04:00
<artifactId > maven-shade-plugin</artifactId>
<version > 2.4.1</version>
<executions >
<execution >
<phase > package</phase>
<goals >
<goal > shade</goal>
</goals>
<configuration >
<finalName > hapi-fhir-cli</finalName>
<artifactSet >
</artifactSet>
<transformers >
<transformer implementation= "org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" >
<mainClass > ca.uhn.fhir.cli.App</mainClass>
</transformer>
</transformers>
<filters >
<filter >
<artifact > *</artifact>
<excludes >
<exclude > **/*.SF</exclude>
<exclude > **/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
2015-07-07 17:27:10 -04:00
</plugin>
</plugins>
2015-09-13 22:06:31 -04:00
<pluginManagement >
<plugins >
<!-- This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<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-dependency-plugin</artifactId>
<versionRange > [2.10,)</versionRange>
<goals >
<goal > copy</goal>
</goals>
</pluginExecutionFilter>
<action >
<ignore > </ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
2015-07-07 17:27:10 -04:00
</build>
</project>