mirror of https://github.com/apache/activemq.git
243 lines
7.9 KiB
XML
243 lines
7.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
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>org.apache.activemq</groupId>
|
|
<artifactId>activemq-parent</artifactId>
|
|
<version>5.9.0</version>
|
|
</parent>
|
|
|
|
<artifactId>activemq-karaf-itest</artifactId>
|
|
<name>ActiveMQ :: Karaf Integration Tests</name>
|
|
<description>Performs Karaf compliance integration tests</description>
|
|
|
|
<properties>
|
|
<pax-exam-version>2.6.0</pax-exam-version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-client</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-karaf</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.logging</groupId>
|
|
<artifactId>pax-logging-api</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.logging</groupId>
|
|
<artifactId>pax-logging-service</artifactId>
|
|
<version>1.6.2</version>
|
|
</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.ops4j.pax.runner</groupId>
|
|
<artifactId>pax-runner-no-jcl</artifactId>
|
|
<version>${pax-runner-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.swissbox</groupId>
|
|
<artifactId>pax-swissbox-tinybundles</artifactId>
|
|
<version>${pax-tiny-bundle-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
<artifactId>pax-exam-container-remote</artifactId>
|
|
<version>${pax-exam-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
<artifactId>pax-exam-container-rbc</artifactId>
|
|
<version>${pax-exam-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
<artifactId>pax-exam-container-rbc-client</artifactId>
|
|
<version>${pax-exam-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
<artifactId>pax-exam-invoker-junit</artifactId>
|
|
<version>${pax-exam-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
<artifactId>pax-exam-inject</artifactId>
|
|
<version>${pax-exam-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
<artifactId>pax-exam-extender-service</artifactId>
|
|
<version>${pax-exam-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openengsb.labs.paxexam.karaf</groupId>
|
|
<artifactId>paxexam-karaf-container</artifactId>
|
|
<version>${paxexam-karaf-container-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.karaf</groupId>
|
|
<artifactId>apache-karaf</artifactId>
|
|
<version>${karaf-version}</version>
|
|
<type>tar.gz</type>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
<artifactId>org.apache.karaf.shell.dev</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.eclipse</groupId>
|
|
<artifactId>osgi</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>org.apache.felix.configadmin</artifactId>
|
|
<version>${felix-configadmin-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.osgi</groupId>
|
|
<artifactId>org.osgi.core</artifactId>
|
|
<version>${org.osgi.core-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.camel.karaf</groupId>
|
|
<artifactId>apache-camel</artifactId>
|
|
<version>${camel-version}</version>
|
|
<type>xml</type>
|
|
<classifier>features</classifier>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- test and logging -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- generate dependencies versions -->
|
|
<plugin>
|
|
<groupId>org.apache.servicemix.tooling</groupId>
|
|
<artifactId>depends-maven-plugin</artifactId>
|
|
<version>${depends-maven-plugin-version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>generate-depends-file</id>
|
|
<goals>
|
|
<goal>generate-depends-file</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<forkMode>pertest</forkMode>
|
|
<redirectTestOutputToFile>false</redirectTestOutputToFile>
|
|
<argLine>-Xmx256m</argLine>
|
|
<excludes>
|
|
<!--<exclude>**/*Cxf*.*</exclude>-->
|
|
</excludes>
|
|
<systemPropertyVariables>
|
|
<activemqVersion>${project.version}</activemqVersion>
|
|
<karafVersion>${karaf-version}</karafVersion>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>ci-build-profile</id>
|
|
<activation>
|
|
<property>
|
|
<name>maven.repo.local</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds>
|
|
<!--
|
|
when the local repo location has been specified, we need to pass
|
|
on this information to PAX mvn url
|
|
-->
|
|
<argLine>-Dorg.ops4j.pax.url.mvn.localRepository=${maven.repo.local}</argLine>
|
|
<excludes>
|
|
<exclude>**/*Test.*</exclude>
|
|
</excludes>
|
|
<systemPropertyVariables>
|
|
<activemqVersion>${project.version}</activemqVersion>
|
|
<karafVersion>${karaf-version}</karafVersion>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|