2015-02-11 08:52:46 -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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir</artifactId>
|
|
|
|
<version>0.9-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hapi-fhir-android</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2015-02-16 23:02:50 -05:00
|
|
|
<name>HAPI FHIR - Android</name>
|
2015-02-11 08:52:46 -05:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-base</artifactId>
|
|
|
|
<version>0.9-SNAPSHOT</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
</exclusion>
|
2015-03-03 18:31:01 -05:00
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</exclusion>
|
2015-02-11 08:52:46 -05:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-dstu</artifactId>
|
|
|
|
<version>0.9-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
|
|
|
<artifactId>hapi-fhir-structures-dstu2</artifactId>
|
|
|
|
<version>0.9-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-schematron</artifactId>
|
|
|
|
<version>${phloc_schematron_version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.phloc</groupId>
|
|
|
|
<artifactId>phloc-commons</artifactId>
|
|
|
|
<version>${phloc_commons_version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient-android</artifactId>
|
|
|
|
<version>4.3.5.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-android</artifactId>
|
|
|
|
<version>${slf4j_version}</version>
|
|
|
|
</dependency>
|
2015-02-16 14:17:29 -05:00
|
|
|
<!-- <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>stax2-api</artifactId>
|
|
|
|
<version>3.1.4</version> </dependency> -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons_io_version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2015-03-03 18:31:01 -05:00
|
|
|
<!--
|
|
|
|
Android does not come with the Servlet API bundled, and MethodUtil requires it
|
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>${servlet_api_version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-02-16 14:17:29 -05:00
|
|
|
|
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit_version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons_io_version}</version> <scope>test</scope> </dependency> -->
|
2015-02-11 08:52:46 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-02-16 14:17:29 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>${maven_failsafe_plugin_version}</version>
|
|
|
|
<configuration>
|
|
|
|
<classpathDependencyScopeExclude>compile+runtime</classpathDependencyScopeExclude>
|
|
|
|
<additionalClasspathElements>
|
2015-03-03 18:31:01 -05:00
|
|
|
<additionalClasspathElement>${project.build.directory}/hapi-fhir-android-${project.version}.jar</additionalClasspathElement>
|
2015-02-16 14:17:29 -05:00
|
|
|
</additionalClasspathElements>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-02-11 08:52:46 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>true</createDependencyReducedPom>
|
2015-02-16 14:17:29 -05:00
|
|
|
<!--<minimizeJar>true</minimizeJar>-->
|
2015-02-11 08:52:46 -05:00
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2015-02-16 14:17:29 -05:00
|
|
|
<include>commons-codec:commons-codec</include>
|
|
|
|
<include>commons-io:commons-io</include>
|
2015-02-11 08:52:46 -05:00
|
|
|
<include>ca.uhn.hapi.fhir:hapi-fhir-base</include>
|
|
|
|
<include>ca.uhn.hapi.fhir:hapi-fhir-structures-dstu</include>
|
|
|
|
<include>ca.uhn.hapi.fhir:hapi-fhir-structures-dstu2</include>
|
|
|
|
<include>org.glassfish:javax.json</include>
|
|
|
|
<include>org.codehaus.woodstox:woodstox-core-asl</include>
|
|
|
|
<include>javax.xml.stream:stax-api</include>
|
|
|
|
<include>org.codehaus.woodstox:stax2-api</include>
|
|
|
|
<include>org.slf4j:slf4j*</include>
|
|
|
|
<include>org.apache.commons:*</include>
|
|
|
|
<include>org.apache.httpcomponents:*</include>
|
2015-02-16 14:17:29 -05:00
|
|
|
<include>org.glassfish:javax.json</include>
|
2015-02-11 08:52:46 -05:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>javax.xml.stream</pattern>
|
|
|
|
<shadedPattern>ca.uhn.fhir.repackage.javax.xml.stream</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>javax.json</pattern>
|
|
|
|
<shadedPattern>ca.uhn.fhir.repackage.javax.json</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2015-02-16 12:19:08 -05:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>ca.uhn.hapi.fhir:hapi-fhir-base</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>ca/uhn/fhir/model/dstu/valueset/**</exclude>
|
2015-02-16 14:17:29 -05:00
|
|
|
<exclude>**/*.java</exclude>
|
2015-02-16 12:19:08 -05:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2015-02-11 08:52:46 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|