hapi-fhir/hapi-fhir-structures-dstu3/pom.xml

221 lines
5.6 KiB
XML
Raw Normal View History

2015-12-20 09:29:52 -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">
2015-11-29 11:43:09 -05:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-deployable-pom</artifactId>
2016-11-11 22:39:45 -05:00
<version>2.2-SNAPSHOT</version>
2015-11-29 11:43:09 -05:00
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
</parent>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
2015-11-29 11:43:09 -05:00
<packaging>jar</packaging>
<name>HAPI FHIR Structures - DSTU3</name>
2015-11-29 11:43:09 -05:00
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
2016-11-11 22:39:45 -05:00
<version>2.2-SNAPSHOT</version>
2015-11-29 11:43:09 -05:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
2016-11-11 22:39:45 -05:00
<version>2.2-SNAPSHOT</version>
2015-11-29 11:43:09 -05:00
<scope>test</scope>
</dependency>
<!--
The JPA project uses a newer API but we'll try to hold to this version
as much as possible. See #283.
-->
2015-11-29 11:43:09 -05:00
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
2015-11-29 11:43:09 -05:00
<scope>provided</scope>
</dependency>
2015-12-20 09:29:52 -05:00
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3_min</artifactId>
<version>1.1.4c</version>
</dependency>
2016-09-08 15:56:15 -04:00
<!--
2015-12-20 09:29:52 -05:00
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.6.0-4</version>
</dependency>
2016-09-08 15:56:15 -04:00
-->
2015-12-20 09:29:52 -05:00
2015-11-29 11:43:09 -05:00
<!-- Testing -->
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2015-12-20 09:29:52 -05:00
<artifactId>jetty-servlet</artifactId>
2015-11-29 11:43:09 -05:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2015-12-20 09:29:52 -05:00
<artifactId>jetty-server</artifactId>
2015-11-29 11:43:09 -05:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ebaysf.web</groupId>
<artifactId>cors-filter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-schematron</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-commons</artifactId>
<scope>test</scope>
</dependency>
<!-- UNIT TEST DEPENDENCIES -->
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<classifier>jdk15</classifier>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<classifier>jdk15-sources</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>directory-naming</groupId>
<artifactId>naming-java</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
2015-12-20 09:29:52 -05:00
<reporting>
2015-11-29 11:43:09 -05:00
<plugins>
<plugin>
2015-12-20 09:29:52 -05:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<show>public</show>
</configuration>
2015-11-29 11:43:09 -05:00
</plugin>
</plugins>
2015-12-20 09:29:52 -05:00
</reporting>
2015-11-29 11:43:09 -05:00
2015-12-20 09:29:52 -05:00
<build>
2015-11-29 11:43:09 -05:00
<plugins>
2016-06-15 17:34:50 -04:00
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<classFolders>
<classFolder>${basedir}/target/classes</classFolder>
<classFolder>${basedir}/../hapi-fhir-base/target/classes</classFolder>
</classFolders>
<sourceFolders>
<sourceFolder>${basedir}/src/main/java</sourceFolder>
<sourceFolder>${basedir}/../hapi-fhir-base/src/main/java</sourceFolder>
</sourceFolders>
<dumpOnExit>true</dumpOnExit>
</configuration>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
2015-11-29 11:43:09 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2015-12-20 09:29:52 -05:00
<artifactId>maven-surefire-plugin</artifactId>
2015-11-29 11:43:09 -05:00
<configuration>
2016-06-15 17:34:50 -04:00
<argLine>${argLine} -Dfile.encoding=UTF-8 -Xmx712m</argLine>
2015-12-20 09:29:52 -05:00
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<!-- Don't add UHN licenses to RI structures -->
<skipUpdateLicense>true</skipUpdateLicense>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<fork>true</fork>
2015-11-29 11:43:09 -05:00
</configuration>
</plugin>
</plugins>
2015-12-20 09:29:52 -05:00
</build>
2015-11-29 11:43:09 -05:00
</project>