2010-01-15 10:53:42 -05:00
|
|
|
<?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>
|
2012-05-02 06:36:17 -04:00
|
|
|
<version>5.7-SNAPSHOT</version>
|
2010-01-15 10:53:42 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-karaf</artifactId>
|
2010-07-08 07:11:22 -04:00
|
|
|
<packaging>bundle</packaging>
|
2010-01-15 10:53:42 -05:00
|
|
|
<name>ActiveMQ :: Apache Karaf</name>
|
|
|
|
<description>Provides resources for running ActiveMQ in Apache Karaf</description>
|
2011-04-29 08:41:15 -04:00
|
|
|
|
|
|
|
<properties>
|
2011-11-04 08:38:15 -04:00
|
|
|
<xpp3-bundle-version>1.1.4c_5</xpp3-bundle-version>
|
2012-04-06 10:34:43 -04:00
|
|
|
<jodatime-bundle-version>1.6.2</jodatime-bundle-version>
|
2012-03-19 14:56:16 -04:00
|
|
|
<jdom-bundle-version>1.1_4</jdom-bundle-version>
|
2011-04-29 08:41:15 -04:00
|
|
|
<dom4j-bundle-version>1.6.1_2</dom4j-bundle-version>
|
|
|
|
<xstream-bundle-version>1.3_3</xstream-bundle-version>
|
2011-05-25 17:01:20 -04:00
|
|
|
<servicemix.specs.version>1.8.0</servicemix.specs.version>
|
2011-11-25 10:57:41 -05:00
|
|
|
<pax-exam-version>1.2.4</pax-exam-version>
|
2011-04-29 08:41:15 -04:00
|
|
|
</properties>
|
2010-01-15 10:53:42 -05:00
|
|
|
|
2010-07-08 07:11:22 -04:00
|
|
|
<dependencies>
|
2011-11-25 10:57:41 -05:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<!-- Pax-Exam dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam</artifactId>
|
|
|
|
<version>${pax-exam-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-junit</artifactId>
|
|
|
|
<version>${pax-exam-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-container-default</artifactId>
|
|
|
|
<version>${pax-exam-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ops4j.pax.exam</groupId>
|
|
|
|
<artifactId>pax-exam-junit-extender-impl</artifactId>
|
|
|
|
<version>${pax-exam-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>org.apache.felix.framework</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>org.apache.felix.bundlerepository</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.tooling</groupId>
|
|
|
|
<artifactId>org.apache.karaf.tooling.testing</artifactId>
|
|
|
|
<version>${karaf-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.features</groupId>
|
|
|
|
<artifactId>org.apache.karaf.features.command</artifactId>
|
|
|
|
<version>${karaf-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2010-07-08 07:11:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
|
|
<artifactId>org.apache.karaf.shell.console</artifactId>
|
|
|
|
<version>${karaf-version}</version>
|
|
|
|
</dependency>
|
2011-11-25 10:57:41 -05:00
|
|
|
|
2010-07-08 07:11:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-optional</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-pool</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2011-11-25 10:57:41 -05:00
|
|
|
<!-- used for testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-08 07:11:22 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2010-01-15 10:53:42 -05:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>filter</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>resources</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-artifacts</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>attach-artifact</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifacts>
|
|
|
|
<artifact>
|
|
|
|
<file>target/classes/features.xml</file>
|
|
|
|
<type>xml</type>
|
|
|
|
<classifier>features</classifier>
|
|
|
|
</artifact>
|
|
|
|
</artifacts>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2010-07-08 07:11:22 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
|
|
|
|
<Export-Package>org.apache.activemq.karaf.commands;version=${project.version};-split-package:=merge-first</Export-Package>
|
|
|
|
<Import-Package>
|
|
|
|
org.apache.felix.gogo.commands,
|
|
|
|
*
|
|
|
|
</Import-Package>
|
|
|
|
<Private-Package>!*</Private-Package>
|
|
|
|
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
2011-11-25 10:57:41 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/KarafIntegrationTest.*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-01-15 10:53:42 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2011-04-29 08:41:15 -04:00
|
|
|
</project>
|