177 lines
5.9 KiB
XML
177 lines
5.9 KiB
XML
|
<!--
|
||
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
||
|
contributor license agreements. See the NOTICE file distributed with
|
||
|
this work for additional information regarding copyright ownership.
|
||
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
||
|
(the "License"); you may not use this file except in compliance with
|
||
|
the License. You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
-->
|
||
|
<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>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-deployable-pom</artifactId>
|
||
|
<version>3.3.0-SNAPSHOT</version>
|
||
|
<relativePath>../hapi-deployable-pom/pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>hapi-fhir-karaf-integration-tests</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>HAPI-FHIR Apache Karaf Integration Tests</name>
|
||
|
|
||
|
<description>
|
||
|
Integration tests for the HAPI-FHIR Apache Karaf features
|
||
|
</description>
|
||
|
|
||
|
<properties>
|
||
|
<pax.exam.version>4.9.1</pax.exam.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-base</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-structures-dstu2</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-structures-dstu2.1</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-structures-hl7org-dstu2</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-structures-dstu3</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-structures-r4</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-validation-resources-dstu3</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-validation-resources-dstu2</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-validation-resources-dstu2.1</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-validation-resources-r4</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir</groupId>
|
||
|
<artifactId>hapi-fhir-validation</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- karaf test -->
|
||
|
<dependency>
|
||
|
<groupId>org.ops4j.pax.exam</groupId>
|
||
|
<artifactId>pax-exam-container-karaf</artifactId>
|
||
|
<version>${pax.exam.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.ops4j.pax.exam</groupId>
|
||
|
<artifactId>pax-exam-junit4</artifactId>
|
||
|
<version>${pax.exam.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xmlunit</groupId>
|
||
|
<artifactId>xmlunit-core</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.karaf</groupId>
|
||
|
<artifactId>apache-karaf</artifactId>
|
||
|
<version>${apache_karaf_version}</version>
|
||
|
<scope>test</scope>
|
||
|
<type>tar.gz</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.karaf.shell</groupId>
|
||
|
<artifactId>org.apache.karaf.shell.console</artifactId>
|
||
|
<version>${apache_karaf_version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ca.uhn.hapi.fhir.karaf</groupId>
|
||
|
<artifactId>hapi-fhir</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<classifier>features</classifier>
|
||
|
<type>xml</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.karaf.features</groupId>
|
||
|
<artifactId>enterprise</artifactId>
|
||
|
<version>${apache_karaf_version}</version>
|
||
|
<classifier>features</classifier>
|
||
|
<type>xml</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.servicemix.bundles</groupId>
|
||
|
<artifactId>org.apache.servicemix.bundles.hamcrest</artifactId>
|
||
|
<version>1.3_1</version>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.servicemix.tooling</groupId>
|
||
|
<artifactId>depends-maven-plugin</artifactId>
|
||
|
<version>1.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>generate-depends-file</id>
|
||
|
<goals>
|
||
|
<goal>generate-depends-file</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<forkCount>1</forkCount>
|
||
|
<reuseForks>false</reuseForks>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|