| POM: |
Show
hide
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>ipf-commons-ihe-hl7v2ws</artifactId>
<name>ipf-commons-ihe-hl7v2ws</name>
<description>HL7v2 Web-Service specific IHE support</description>
<url>${site.url}/${project.artifactId}</url>
<parent>
<groupId>org.openehealth.ipf.commons</groupId>
<artifactId>ipf-commons-ihe</artifactId>
<version>3.1-20151130</version>
</parent>
<properties>
<osgi.export.pkg>
org.openehealth.ipf.commons.ihe.hl7v2ws.*,
org.openehealth.ipf.commons.ihe.hl7v2ws.pcd01.*,
wsdl.pcc01
</osgi.export.pkg>
<osgi.import.pkg>
org.openehealth.ipf.modules.hl7.message,
org.openehealth.ipf.commons.core.modules.api,
org.openehealth.ipf.modules.hl7,
groovy.util,
ca.uhn.hl7v2,
org.slf4j.*;version="[1.6,2)",
*
</osgi.import.pkg>
<osgi.fragment.host>org.apache.cxf.cxf-core</osgi.fragment.host>
</properties>
<dependencies>
<!-- Dependencies for main -->
<dependency>
<groupId>ca.uhn.hapi</groupId>
<artifactId>hapi-structures-v26</artifactId>
</dependency>
<dependency>
<groupId>org.openehealth.ipf.commons</groupId>
<artifactId>ipf-commons-ihe-hl7v2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.openehealth.ipf.gazelle</groupId>
<artifactId>ipf-gazelle-validation-profiles-pcd</artifactId>
<version>${ipf-gazelle-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>${site.deploy.id}</id>
<url>${site.deploy.url}${project.artifactId}</url>
</site>
</distributionManagement>
</project>
|