94 lines
2.6 KiB
XML
94 lines
2.6 KiB
XML
|
<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</artifactId>
|
||
|
<version>1.3-SNAPSHOT</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>hapi-fhir-jaxrsserver-example</artifactId>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<name>HAPI FHIR JPA Server - Example</name>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>oss-snapshots</id>
|
||
|
<snapshots>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<!-- This dependency includes the core HAPI-FHIR classes -->
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-jaxrsserver-base</artifactId>
|
||
|
<version>1.3-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
<build>
|
||
|
|
||
|
<!-- Tells Maven to name the generated WAR file as hapi-fhir-jpaserver-example.war -->
|
||
|
<finalName>hapi-fhir-jaxrsserver-example</finalName>
|
||
|
<!-- This is to run the integration tests -->
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>integration-test</goal>
|
||
|
<goal>verify</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>unpack</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>unpack</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<artifactItems>
|
||
|
<artifactItem>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>${project.artifactId}</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<type>war</type>
|
||
|
<includes>*.war</includes>
|
||
|
</artifactItem>
|
||
|
</artifactItems>
|
||
|
<outputDirectory>C:\Agfa\ORBIS-AS\server\orbis-as-08.05.07.00.0009200-UK\standalone\deployments</outputDirectory>
|
||
|
<stripVersion>true</stripVersion>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|