2019-06-13 16:15:29 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-26 09:24:36 -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>
|
2023-06-29 08:34:32 -04:00
|
|
|
<version>6.7.11-SNAPSHOT</version>
|
2023-04-02 11:50:20 -04:00
|
|
|
|
2019-06-26 09:24:36 -04:00
|
|
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hapi-fhir-test-utilities</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>HAPI FHIR Test Utilities</name>
|
|
|
|
<url>http://jamesagnew.github.io/hapi-fhir/</url>
|
|
|
|
|
2023-05-08 16:42:25 -04:00
|
|
|
<properties>
|
|
|
|
<!-- this is a test jar, so use our test settings -->
|
|
|
|
<maven.compiler.source>${maven.compiler.testSource}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${maven.compiler.testTarget}</maven.compiler.target>
|
|
|
|
<maven.compiler.release>${maven.compiler.testRelease}</maven.compiler.release>
|
|
|
|
</properties>
|
|
|
|
|
2019-06-13 16:15:29 -04:00
|
|
|
<dependencies>
|
2019-10-03 14:57:00 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2020-06-24 14:52:05 -04:00
|
|
|
<version>${project.version}</version>
|
2019-10-03 14:57:00 -04:00
|
|
|
</dependency>
|
2019-10-23 22:02:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-server</artifactId>
|
2020-06-24 14:52:05 -04:00
|
|
|
<version>${project.version}</version>
|
2019-10-23 22:02:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-client</artifactId>
|
2020-06-24 14:52:05 -04:00
|
|
|
<version>${project.version}</version>
|
2019-10-23 22:02:07 -04:00
|
|
|
</dependency>
|
2022-05-26 14:41:12 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2022-08-02 23:51:37 -04:00
|
|
|
<artifactId>org.hl7.fhir.dstu3</artifactId>
|
2022-05-26 14:41:12 -04:00
|
|
|
<version>${fhir_core_version}</version>
|
|
|
|
</dependency>
|
2022-08-02 09:27:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2022-08-02 23:51:37 -04:00
|
|
|
<artifactId>org.hl7.fhir.r4</artifactId>
|
2022-08-02 09:27:02 -04:00
|
|
|
<version>${fhir_core_version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-06-13 16:15:29 -04:00
|
|
|
<!-- General -->
|
2019-06-26 09:24:36 -04:00
|
|
|
<dependency>
|
2019-06-13 16:15:29 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
2019-06-26 09:24:36 -04:00
|
|
|
<optional>true</optional>
|
2019-06-13 16:15:29 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2019-06-26 09:24:36 -04:00
|
|
|
</dependency>
|
2022-02-27 16:04:49 -05:00
|
|
|
|
|
|
|
<!-- Spring -->
|
2019-06-26 09:24:36 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<optional>true</optional>
|
2019-06-13 16:15:29 -04:00
|
|
|
</dependency>
|
2021-06-18 14:22:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<optional>true</optional>
|
2021-06-15 10:36:05 -04:00
|
|
|
</dependency>
|
2022-11-08 22:18:36 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-websocket</artifactId>
|
|
|
|
</dependency>
|
2020-05-05 15:12:15 -04:00
|
|
|
|
2022-12-20 12:05:15 -05:00
|
|
|
<!-- Hibernate -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.search</groupId>
|
|
|
|
<artifactId>hibernate-search-mapper-orm</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-04-25 15:40:50 -04:00
|
|
|
<!-- HTMLUnit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sourceforge.htmlunit</groupId>
|
|
|
|
<artifactId>htmlunit</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
</exclusion>
|
2022-11-08 22:18:36 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-client</artifactId>
|
|
|
|
</exclusion>
|
2021-04-25 15:40:50 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.awaitility</groupId>
|
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Jetty -->
|
2020-07-04 18:28:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
</dependency>
|
2022-11-08 22:18:36 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
|
|
|
</dependency>
|
2020-07-04 18:28:16 -04:00
|
|
|
|
2019-07-04 09:00:30 -04:00
|
|
|
<dependency>
|
2020-07-04 18:28:16 -04:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava-testlib</artifactId>
|
2020-05-05 15:12:15 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2020-07-04 18:28:16 -04:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-05-05 15:12:15 -04:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest</artifactId>
|
2019-07-04 09:00:30 -04:00
|
|
|
</dependency>
|
2019-10-23 22:02:07 -04:00
|
|
|
<dependency>
|
2020-07-04 18:28:16 -04:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<scope>compile</scope>
|
2019-10-23 22:02:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-07-04 18:28:16 -04:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
2019-10-23 22:02:07 -04:00
|
|
|
</dependency>
|
2020-07-04 18:28:16 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2021-10-26 15:15:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-params</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2021-01-18 21:53:14 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
<scope>compile</scope>
|
2021-01-18 22:07:12 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
</exclusion>
|
2021-04-25 15:40:50 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
2021-01-18 22:07:12 -05:00
|
|
|
</exclusions>
|
2021-01-18 21:53:14 -05:00
|
|
|
</dependency>
|
2023-02-26 22:12:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.seregamorph</groupId>
|
|
|
|
<artifactId>hamcrest-more-matchers</artifactId>
|
|
|
|
<version>0.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-11-08 22:18:36 -05:00
|
|
|
</dependencies>
|
2019-06-13 16:15:29 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
</plugin>
|
2022-08-02 09:27:02 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<nonFilteredFileExtensions>
|
|
|
|
<nonFilteredFileExtension>p12</nonFilteredFileExtension>
|
|
|
|
</nonFilteredFileExtensions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-06-13 16:15:29 -04:00
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
</project>
|