mirror of https://github.com/apache/activemq.git
https://issues.apache.org/activemq/browse/AMQ-2570 - first iteration of activemq karaf features definition
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@899673 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
630184adfa
commit
1d166a7396
|
@ -0,0 +1,79 @@
|
|||
<?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.4-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>activemq-karaf</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>ActiveMQ :: Apache Karaf</name>
|
||||
<description>Provides resources for running ActiveMQ in Apache Karaf</description>
|
||||
|
||||
<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>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
|
@ -0,0 +1,32 @@
|
|||
<features>
|
||||
<repository>mvn:org.apache.felix.karaf/apache-felix-karaf/1.1.0-SNAPSHOT/xml/features</repository>
|
||||
|
||||
<feature name="transaction" version="1.0.0">
|
||||
<bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
|
||||
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-connector_1.5_spec/2.0.0</bundle>
|
||||
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.howl/1.0.1-1_1</bundle>
|
||||
<bundle>mvn:org.apache.geronimo.components/geronimo-transaction/2.2-r634076</bundle>
|
||||
<bundle>mvn:org.springframework/spring-tx/2.5.6</bundle>
|
||||
<bundle>mvn:org.apache.servicemix.transaction/org.apache.servicemix.transaction/1.0.0</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="connector" version="4.0.0">
|
||||
<feature version="1.0.0">transaction</feature>
|
||||
<bundle>mvn:org.apache.geronimo.components/geronimo-connector/2.2-r634076</bundle>
|
||||
<bundle>mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1</bundle>
|
||||
<bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.jencks/2.1_1</bundle>
|
||||
</feature>
|
||||
|
||||
<feature name="activemq" version="5.3.0">
|
||||
<feature version="4.0.0">connector</feature>
|
||||
<bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1</bundle>
|
||||
<bundle>mvn:commons-pool/commons-pool/1.4</bundle>
|
||||
<bundle>mvn:org.apache.xbean/xbean-spring/3.6</bundle>
|
||||
<bundle>mvn:org.apache.activemq/activemq-core/5.3.0</bundle>
|
||||
<bundle>mvn:org.apache.activemq/kahadb/5.3.0</bundle>
|
||||
<bundle>mvn:org.apache.activemq/activemq-ra/5.3.0</bundle>
|
||||
<bundle>mvn:org.apache.activemq/activemq-console/5.3.0</bundle>
|
||||
<bundle>mvn:org.apache.activemq/activemq-pool/5.3.0</bundle>
|
||||
<bundle>mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.commands/4.1.0-SNAPSHOT</bundle>
|
||||
</feature>
|
||||
</features>
|
Loading…
Reference in New Issue