2016-01-28 11:36:59 -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" >
<modelVersion > 4.0.0</modelVersion>
<!-- 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. -->
<parent >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-cli</artifactId>
2018-03-29 06:54:24 -04:00
<version > 3.4.0-SNAPSHOT</version>
2016-01-28 11:36:59 -05:00
<relativePath > ../pom.xml</relativePath>
</parent>
<artifactId > hapi-fhir-cli-app</artifactId>
<packaging > jar</packaging>
<name > HAPI FHIR - Command Line Client - Application</name>
<dependencies >
<!-- This dependency includes the core HAPI - FHIR classes -->
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-base</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
</dependency>
2017-08-13 14:39:47 -04:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-jpaserver-base</artifactId>
<version > ${project.version}</version>
</dependency>
2016-01-28 11:36:59 -05:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-cli-jpaserver</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
<type > war</type>
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-cli-jpaserver</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
<type > jar</type>
<classifier > classes</classifier>
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-testpage-overlay</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
<classifier > classes</classifier>
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-structures-dstu2</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
2016-02-01 08:55:58 -05:00
<artifactId > hapi-fhir-structures-dstu3</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-structures-hl7org-dstu2</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-validation-resources-dstu2</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
</dependency>
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
2016-02-01 08:55:58 -05:00
<artifactId > hapi-fhir-validation-resources-dstu3</artifactId>
2017-01-29 13:22:28 -05:00
<version > ${project.version}</version>
2016-01-28 11:36:59 -05:00
</dependency>
2017-09-07 23:33:19 -04:00
<dependency >
<groupId > ca.uhn.hapi.fhir</groupId>
<artifactId > hapi-fhir-igpacks</artifactId>
<version > ${project.version}</version>
</dependency>
2016-01-28 11:36:59 -05:00
<dependency >
<groupId > ch.qos.logback</groupId>
<artifactId > logback-classic</artifactId>
</dependency>
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
</dependency>
<dependency >
<groupId > commons-cli</groupId>
<artifactId > commons-cli</artifactId>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-core</artifactId>
<exclusions >
<exclusion >
<artifactId > commons-logging</artifactId>
<groupId > commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-webmvc</artifactId>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-context</artifactId>
<exclusions >
<exclusion >
<artifactId > xml-apis</artifactId>
<groupId > xml-apis</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-beans</artifactId>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-tx</artifactId>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-context-support</artifactId>
</dependency>
<dependency >
<groupId > org.springframework</groupId>
<artifactId > spring-web</artifactId>
</dependency>
<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>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-api</artifactId>
</dependency>
<dependency >
<groupId > org.eclipse.jetty.websocket</groupId>
<artifactId > websocket-client</artifactId>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > jcl-over-slf4j</artifactId>
</dependency>
<dependency >
<groupId > org.thymeleaf</groupId>
<artifactId > thymeleaf</artifactId>
</dependency>
<dependency >
<groupId > org.thymeleaf</groupId>
<artifactId > thymeleaf-spring4</artifactId>
</dependency>
<dependency >
<groupId > com.phloc</groupId>
<artifactId > phloc-schematron</artifactId>
2017-01-29 13:22:28 -05:00
<exclusions >
<exclusion >
<artifactId > Saxon-HE</artifactId>
<groupId > net.sf.saxon</groupId>
</exclusion>
</exclusions>
2016-01-28 11:36:59 -05:00
</dependency>
<dependency >
<groupId > com.phloc</groupId>
<artifactId > phloc-commons</artifactId>
</dependency>
2018-01-31 07:41:24 -05:00
<!--
These have been added as explicit dependencies
as JDK9 no longer includes them by default
-->
2018-01-29 13:05:37 -05:00
<dependency >
<groupId > javax.xml.bind</groupId>
<artifactId > jaxb-api</artifactId>
</dependency>
<dependency >
<groupId > com.sun.xml.bind</groupId>
<artifactId > jaxb-core</artifactId>
</dependency>
<dependency >
<groupId > com.sun.xml.bind</groupId>
<artifactId > jaxb-impl</artifactId>
</dependency>
2016-01-28 11:36:59 -05:00
<dependency >
<groupId > org.fusesource.jansi</groupId>
<artifactId > jansi</artifactId>
</dependency>
</dependencies>
<build >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<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-cli-jpaserver</artifactId>
2016-02-28 15:50:31 -05:00
<!-- <version>1.5 - SNAPSHOT</version> -->
2016-01-28 11:36:59 -05:00
<type > war</type>
<overWrite > true</overWrite>
<outputDirectory > target/classes</outputDirectory>
<destFileName > hapi-fhir-cli-jpaserver.war</destFileName>
</artifactItem>
</artifactItems>
<!-- other configurations here -->
</configuration>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-deploy-plugin</artifactId>
<configuration >
<skip > true</skip>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-shade-plugin</artifactId>
<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>
</plugin>
</plugins>
<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>
</build>
</project>