hapi-fhir/hapi-fhir-osgi-core/pom.xml

202 lines
6.0 KiB
XML
Raw Normal View History

2015-09-19 11:00:57 -04: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-09-09 07:30:57 -04:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-deployable-pom</artifactId>
2015-11-15 20:11:05 -05:00
<version>1.4-SNAPSHOT</version>
2015-09-09 07:30:57 -04:00
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
</parent>
<artifactId>hapi-fhir-osgi-core</artifactId>
2015-09-19 11:00:57 -04:00
<packaging>bundle</packaging>
2015-09-09 07:30:57 -04:00
<url>http://jamesagnew.github.io/hapi-fhir/</url>
<name>HAPI FHIR - OSGi Bundle</name>
<dependencies>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-base</artifactId>
2015-11-15 20:11:05 -05:00
<version>1.4-SNAPSHOT</version>
2015-09-19 11:00:57 -04:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu</artifactId>
2015-11-15 20:11:05 -05:00
<version>1.4-SNAPSHOT</version>
2015-09-19 11:00:57 -04:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-dstu2</artifactId>
2015-11-15 20:11:05 -05:00
<version>1.4-SNAPSHOT</version>
2015-09-19 11:00:57 -04:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
2015-11-15 20:11:05 -05:00
<version>1.4-SNAPSHOT</version>
2015-09-19 11:00:57 -04:00
</dependency>
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
2015-11-15 20:11:05 -05:00
<version>1.4-SNAPSHOT</version>
2015-09-09 07:30:57 -04:00
</dependency>
2015-10-14 18:11:52 -04:00
2015-10-21 07:57:42 -04:00
<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>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
2015-10-08 17:38:14 -04:00
<!-- Don't force OSGi users to use a newer version of SLF4j than we need -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j_target_version}</version>
</dependency>
2015-10-14 18:11:52 -04:00
2015-09-09 07:30:57 -04:00
</dependencies>
<build>
2015-09-19 11:00:57 -04:00
<plugins>
2015-10-21 07:57:42 -04:00
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>copySources</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy todir="target/sources">
<fileset dir="../hapi-fhir-base/src/main/java" />
<fileset dir="../hapi-fhir-structures-dstu/src/main/java" />
<fileset dir="../hapi-fhir-structures-dstu/target/generated-sources/tinder" />
<fileset dir="../hapi-fhir-structures-dstu/src/main/java" />
<fileset dir="../hapi-fhir-structures-dstu2/src/main/java" />
<fileset dir="../hapi-fhir-structures-dstu2/target/generated-sources/tinder" />
<fileset dir="../hapi-fhir-structures-hl7org-dstu2/src/main/java" />
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
2015-09-19 11:00:57 -04:00
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
2015-10-14 18:11:52 -04:00
<!--<Export-Package>ca.uhn.fhir</Export-Package> <Export-Package>org.hl7.fhir</Export-Package> -->
2015-09-19 11:00:57 -04:00
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
2015-10-14 18:11:52 -04:00
<!--<Embed-Dependency>*;scope=!provided|test</Embed-Dependency> <Embed-Directory>lib</Embed-Directory> <Embed-Transitive>true</Embed-Transitive> -->
<_removeheaders>Built-By, Include-Resource, Private-Package</_removeheaders>
2015-09-19 11:00:57 -04:00
<!-- <Private-Package>org.foo.myproject.*</Private-Package> <Bundle-Activator>org.foo.myproject.impl1.Activator</Bundle-Activator> -->
2015-10-21 07:57:42 -04:00
<!-- <Embed-Dependency>*;scope=compile|runtime;inline=false;artifactId=hapi-fhir-*</Embed-Dependency> -->
<Import-Package>
!ca.uhn.*,
!org.hl7.*,
*
</Import-Package>
2015-09-19 11:00:57 -04:00
</instructions>
</configuration>
<executions>
<execution>
<goals>
<goal>bundle</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<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>
<phase>integration-test</phase>
</execution>
</executions>
</plugin>
2015-09-19 11:00:57 -04:00
</plugins>
2015-09-09 07:30:57 -04:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
2015-10-21 07:57:42 -04:00
<resource>
<directory>../hapi-fhir-base/src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>../hapi-fhir-structures-dstu/src/main/resources</directory>
2015-10-21 09:54:32 -04:00
<filtering>false</filtering>
2015-10-21 07:57:42 -04:00
</resource>
<resource>
<directory>../hapi-fhir-structures-dstu/target/generated-resources/tinder</directory>
2015-10-21 09:54:32 -04:00
<filtering>false</filtering>
2015-10-21 07:57:42 -04:00
</resource>
<resource>
<directory>../hapi-fhir-structures-dstu2/src/main/resources</directory>
2015-10-21 09:54:32 -04:00
<filtering>false</filtering>
2015-10-21 07:57:42 -04:00
</resource>
<resource>
<directory>../hapi-fhir-structures-dstu2/target/generated-resources/tinder</directory>
2015-10-21 09:54:32 -04:00
<filtering>false</filtering>
2015-10-21 07:57:42 -04:00
</resource>
<resource>
<directory>../hapi-fhir-structures-hl7org-dstu2/src/resources/java</directory>
2015-10-21 09:54:32 -04:00
<filtering>false</filtering>
2015-10-21 07:57:42 -04:00
</resource>
2015-09-09 07:30:57 -04:00
</resources>
</build>
2015-10-21 07:57:42 -04:00
2015-09-09 07:30:57 -04:00
</project>