2023-01-25 09:27:12 -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">
|
2014-07-02 08:57:07 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir</artifactId>
|
2024-05-13 18:51:03 -04:00
|
|
|
<version>7.3.2-SNAPSHOT</version>
|
2023-04-02 11:50:20 -04:00
|
|
|
|
2014-07-02 08:57:07 -04:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hapi-fhir-testpage-overlay</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<name>HAPI FHIR TestPage Overlay</name>
|
|
|
|
|
2014-08-11 09:09:01 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>oss-snapshots</id>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2014-07-02 08:57:07 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2014-07-02 08:57:07 -04:00
|
|
|
</dependency>
|
2015-02-09 06:00:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2017-08-13 14:39:47 -04:00
|
|
|
<artifactId>hapi-fhir-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-server</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2015-02-09 06:00:49 -05:00
|
|
|
</dependency>
|
2022-10-20 16:57:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-converter</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-10-17 18:08:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
2017-08-13 14:39:47 -04:00
|
|
|
<artifactId>hapi-fhir-jpaserver-base</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2017-08-13 14:39:47 -04:00
|
|
|
<scope>test</scope>
|
2014-10-17 18:08:37 -04:00
|
|
|
</dependency>
|
2015-02-09 06:00:49 -05:00
|
|
|
<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>
|
2015-02-09 06:00:49 -05:00
|
|
|
</dependency>
|
2016-02-01 08:55:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-dstu3</artifactId>
|
2017-01-29 13:22:28 -05:00
|
|
|
<version>${project.version}</version>
|
2016-02-01 08:55:58 -05:00
|
|
|
</dependency>
|
2017-08-13 14:39:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-r4</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-10-20 16:57:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-r4b</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-09-14 11:51:09 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-r5</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2023-07-21 18:51:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-jpaserver-hfql</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2015-09-30 08:31:38 -04:00
|
|
|
<!--<dependency> <groupId>ca.uhn.hapi.fhir</groupId> <artifactId>hapi-fhir-structures-dev</artifactId> <version>0.9</version> </dependency> -->
|
2020-03-17 17:27:26 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</dependency>
|
2014-07-02 08:57:07 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-07-10 08:50:51 -04:00
|
|
|
<groupId>org.thymeleaf</groupId>
|
2023-12-03 11:15:37 -05:00
|
|
|
<artifactId>thymeleaf-spring6</artifactId>
|
2014-07-02 08:57:07 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-12-03 11:15:37 -05:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2014-07-03 08:51:42 -04:00
|
|
|
<scope>provided</scope>
|
2014-07-02 08:57:07 -04:00
|
|
|
</dependency>
|
2018-12-22 20:13:03 -05:00
|
|
|
<dependency>
|
2022-11-08 22:18:36 -05:00
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
2018-12-22 20:13:03 -05:00
|
|
|
</dependency>
|
|
|
|
|
2014-07-02 08:57:07 -04:00
|
|
|
<!-- Spring -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
|
</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>
|
2014-08-08 14:07:03 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
2019-10-21 07:22:55 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- WebJars -->
|
2023-07-21 18:51:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars.npm</groupId>
|
|
|
|
<artifactId>ace-builds</artifactId>
|
|
|
|
</dependency>
|
2019-10-21 07:22:55 -04:00
|
|
|
<dependency>
|
2020-10-12 20:47:14 -04:00
|
|
|
<groupId>org.webjars.npm</groupId>
|
2019-10-21 07:22:55 -04:00
|
|
|
<artifactId>bootstrap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>Eonasdan-bootstrap-datetimepicker</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>font-awesome</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars.bower</groupId>
|
|
|
|
<artifactId>awesome-bootstrap-checkbox</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>jstimezonedetect</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars</groupId>
|
|
|
|
<artifactId>select2</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars.bower</groupId>
|
|
|
|
<artifactId>jquery</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars.bower</groupId>
|
|
|
|
<artifactId>moment</artifactId>
|
2014-08-08 14:07:03 -04:00
|
|
|
</dependency>
|
2020-10-12 20:47:14 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.webjars.npm</groupId>
|
|
|
|
<artifactId>popper.js</artifactId>
|
|
|
|
</dependency>
|
2014-07-02 08:57:07 -04:00
|
|
|
|
2023-01-25 09:27:12 -05:00
|
|
|
<!-- Test Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-03-01 07:15:02 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-01-25 09:27:12 -05:00
|
|
|
<dependency>
|
2023-12-11 18:24:40 -05:00
|
|
|
<groupId>org.htmlunit</groupId>
|
2023-01-25 09:27:12 -05:00
|
|
|
<artifactId>htmlunit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-test-utilities</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-07-02 08:57:07 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-07-10 08:50:51 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copyNarrativeCss</id>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
2023-01-25 09:27:12 -05:00
|
|
|
<copy todir="${project.build.directory}/${project.build.finalName}/css" flatten="true"
|
|
|
|
failonerror="true">
|
2014-07-10 08:50:51 -04:00
|
|
|
<resources>
|
2023-01-25 09:27:12 -05:00
|
|
|
<file
|
|
|
|
file="${basedir}/../hapi-fhir-base/src/main/resources/ca/uhn/fhir/narrative/hapi-narrative.css"/>
|
2014-07-10 08:50:51 -04:00
|
|
|
</resources>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-07-02 08:57:07 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
2014-07-13 21:59:41 -04:00
|
|
|
<skip>false</skip>
|
2014-07-02 08:57:07 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-09-30 08:31:38 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<attachClasses>true</attachClasses>
|
2015-10-17 09:39:27 -04:00
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
2019-03-31 13:57:02 -04:00
|
|
|
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
|
2015-09-30 08:31:38 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-11-13 15:43:15 -05:00
|
|
|
<plugin>
|
2023-01-25 09:27:12 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-07-02 08:57:07 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|