hapi-fhir/hapi-fhir-dist/pom.xml

235 lines
6.7 KiB
XML
Raw Normal View History

2014-12-17 14:22:10 -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>
2014-12-17 17:04:10 -05:00
<artifactId>hapi-fhir</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2014-12-17 14:22:10 -05:00
<relativePath>../pom.xml</relativePath>
</parent>
2014-12-17 17:04:10 -05:00
<artifactId>hapi-fhir-dist</artifactId>
2014-12-17 14:22:10 -05:00
<packaging>pom</packaging>
2014-12-17 17:04:10 -05:00
<name>HAPI FHIR - Distribution Archive</name>
2014-12-17 14:22:10 -05:00
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2014-12-17 14:22:10 -05:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
<version>2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
2014-12-17 14:22:10 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
<version>2.3-SNAPSHOT</version>
2014-12-17 14:22:10 -05:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
2015-03-13 08:34:52 -04:00
<artifactId>hapi-fhir-structures-dstu2</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
2014-12-17 14:22:10 -05:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
2015-09-24 10:00:49 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2015-09-24 10:00:49 -04:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
<version>2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
2016-02-03 16:56:32 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2016-02-03 16:56:32 -05:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu3</artifactId>
<version>2.3-SNAPSHOT</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
2015-09-24 10:00:49 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2015-09-24 10:00:49 -04:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu2.1</artifactId>
<version>2.3-SNAPSHOT</version>
</dependency>
2016-02-03 16:56:32 -05:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2016-02-03 16:56:32 -05:00
</dependency>
2015-09-24 10:00:49 -04:00
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
2016-01-30 10:28:05 -05:00
<artifactId>hapi-fhir-cli-app</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
2015-09-24 10:00:49 -04:00
<!-- Don't include in standard distribution -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-android</artifactId>
2016-12-20 19:01:31 -05:00
<version>2.3-SNAPSHOT</version>
<!-- Don't include in standard distribution -->
<scope>provided</scope>
</dependency>
2014-12-17 14:22:10 -05:00
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-schematron</artifactId>
</dependency>
<dependency>
<groupId>com.phloc</groupId>
<artifactId>phloc-commons</artifactId>
</dependency>
2016-11-22 06:33:20 -05:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
2014-12-17 14:22:10 -05:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>DIST</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<attach>false</attach>
<descriptors>
2015-03-13 17:59:55 -04:00
<descriptor>${project.basedir}/src/assembly/hapi-fhir-standard-distribution.xml</descriptor>
2015-02-05 10:25:18 -05:00
<descriptor>${project.basedir}/src/assembly/hapi-fhir-jpaserver-example.xml</descriptor>
2015-03-13 17:59:55 -04:00
<descriptor>${project.basedir}/src/assembly/hapi-fhir-android-distribution.xml</descriptor>
2015-10-03 16:11:47 -04:00
<descriptor>${project.basedir}/src/assembly/hapi-fhir-cli.xml</descriptor>
2014-12-17 14:22:10 -05:00
</descriptors>
2015-10-12 18:47:49 -04:00
<finalName>hapi-fhir-${project.version}</finalName>
2014-12-17 14:22:10 -05:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>