hapi-fhir/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml

224 lines
6.1 KiB
XML
Raw Normal View History

2018-04-30 15:04:35 -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>
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-deployable-pom</artifactId>
2018-05-28 17:44:38 -04:00
<version>3.5.0-SNAPSHOT</version>
2018-04-30 15:04:35 -04:00
<relativePath>../../hapi-deployable-pom/pom.xml</relativePath>
</parent>
<artifactId>hapi-fhir-cli-api</artifactId>
<packaging>jar</packaging>
<name>HAPI FHIR - Command Line Client - API</name>
<dependencies>
<!-- This dependency includes the core HAPI-FHIR classes -->
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-jpaserver-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-cli-jpaserver</artifactId>
<version>${project.version}</version>
<type>jar</type>
<classifier>classes</classifier>
</dependency>
Squashed commit of the following: commit 2be11651c212ede9d50956ba9d4a802885e9dbed Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 11:50:53 2018 -0400 Update changelog commit b3bb5f9052ecebce87588e2d5f5be983fbd0fd2e Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 11:19:28 2018 -0400 Parameter updates commit f6b1082ba46f4d0d47d3e0094e904d527b0ebf75 Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 07:24:30 2018 -0400 More test fixes commit 81a69c265f7347f6a23c73b827c79a8a4051b21b Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 06:26:48 2018 -0400 Fix compile error commit 935938e92c697be1940b788a46c38ffd5ce84b84 Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 06:25:18 2018 -0400 Another test fix commit 43568a1f8dd6325bebba2cd47ffb42bee7f12aa6 Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 06:18:06 2018 -0400 Fix compile error commit e95894e643dda0a70ab5ab7be4363cae4ce5c4e6 Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 06:13:50 2018 -0400 More work on tests commit 9393fb8f4f93e69f80293c0488cc16f74613f25c Author: James Agnew <jamesagnew@gmail.com> Date: Thu May 10 05:36:27 2018 -0400 One more fix commit 437f5051e4742eb500ec1eb1852e4c6105927c51 Author: James Agnew <jamesagnew@gmail.com> Date: Wed May 9 21:32:10 2018 -0400 Work on validator commit 20c51add4fbb5c33d7b5f8517fe9bf9a4f314292 Author: James Agnew <jamesagnew@gmail.com> Date: Wed May 9 19:34:10 2018 -0400 Validator fix commit 7bf2b0a0e93b71f6fbc46ab3b1dbd0fba6367959 Author: James Agnew <jamesagnew@gmail.com> Date: Wed May 9 18:44:04 2018 -0400 Fix test commit adc73e75c9b392ed964588f03970ab1afdb4cdef Author: James Agnew <jamesagnew@gmail.com> Date: Wed May 9 17:22:34 2018 -0400 Merge validator
2018-05-10 11:53:32 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-igpacks</artifactId>
<version>${project.version}</version>
</dependency>
2018-09-07 15:30:35 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-jpaserver-migrate</artifactId>
<version>${project.version}</version>
</dependency>
2018-04-30 15:04:35 -04:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
<version>${project.version}</version>
</dependency>
<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>
2018-05-30 08:54:16 -04:00
<!-- Dependencies for Schematron -->
2018-04-30 15:04:35 -04:00
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-schematron</artifactId>
2018-04-30 15:04:35 -04:00
<exclusions>
<exclusion>
2018-05-30 08:54:16 -04:00
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</exclusion>
<exclusion>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.istack</groupId>
<artifactId>istack-commons-runtime</artifactId>
2018-04-30 15:04:35 -04:00
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.helger</groupId>
<artifactId>ph-commons</artifactId>
2018-04-30 15:04:35 -04:00
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
2018-05-30 05:45:08 -04:00
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
2018-04-30 15:04:35 -04:00
</dependency>
2018-04-30 15:04:35 -04:00
<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
</plugins>
</build>
</project>