2015-09-04 13:59:57 -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">
|
2014-09-16 12:05:44 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir</artifactId>
|
2024-03-06 11:01:42 -05:00
|
|
|
<version>7.1.6-SNAPSHOT</version>
|
2023-04-02 11:50:20 -04:00
|
|
|
|
2018-03-23 07:15:22 -04:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2014-09-16 12:05:44 -04:00
|
|
|
</parent>
|
|
|
|
|
2018-03-23 07:15:22 -04:00
|
|
|
<artifactId>hapi-fhir-base-test-mindeps-client</artifactId>
|
2014-09-16 12:05:44 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2015-06-11 14:24:40 -04:00
|
|
|
<name>HAPI FHIR - Minimal Dependency Test - Client</name>
|
2014-09-16 12:05:44 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</dependency>
|
2016-07-12 21:44:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2015-09-04 13:59:57 -04:00
|
|
|
<!--
|
|
|
|
Woodstox note: The hapi-fhir-base-testmindeps-client project includes no Woodstox at all, so that we use the
|
|
|
|
StAX version that's bundled with the JDK. The hapi-fhir-base-testmindeps-server
|
|
|
|
project uses a really old Woodstox version so that we test that.
|
|
|
|
-->
|
2014-09-16 12:05:44 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2015-02-04 14:15:11 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2020-11-27 19:49:06 -05:00
|
|
|
<groupId>com.fasterxml.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core</artifactId>
|
2015-02-04 14:15:11 -05:00
|
|
|
</exclusion>
|
2015-06-11 14:24:40 -04:00
|
|
|
<exclusion>
|
2023-12-03 11:15:37 -05:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
2015-06-11 14:24:40 -04:00
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
2015-02-04 14:15:11 -05:00
|
|
|
</exclusions>
|
2014-09-16 12:05:44 -04:00
|
|
|
</dependency>
|
2014-10-16 17:19:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2017-08-13 14:39:47 -04:00
|
|
|
<artifactId>hapi-fhir-client</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2015-02-04 14:15:11 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2017-08-13 14:39:47 -04:00
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2015-02-04 14:15:11 -05:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-10-16 17:19:27 -04:00
|
|
|
</dependency>
|
2014-12-21 18:13:37 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2017-08-13 14:39:47 -04:00
|
|
|
<artifactId>hapi-fhir-structures-dstu3</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2015-02-04 14:15:11 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2020-11-27 19:49:06 -05:00
|
|
|
<groupId>com.fasterxml.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core</artifactId>
|
2015-02-04 14:15:11 -05:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-12-21 18:13:37 -05:00
|
|
|
</dependency>
|
2015-09-04 13:59:57 -04:00
|
|
|
|
2014-09-16 12:05:44 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|