You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2010/01/15 16:53:42 UTC

svn commit: r899673 - in /activemq/trunk: activemq-karaf/ activemq-karaf/pom.xml activemq-karaf/src/ activemq-karaf/src/main/ activemq-karaf/src/main/resources/ activemq-karaf/src/main/resources/features.xml pom.xml

Author: dejanb
Date: Fri Jan 15 15:53:42 2010
New Revision: 899673

URL: http://svn.apache.org/viewvc?rev=899673&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQ-2570 - first iteration of activemq karaf features definition

Added:
    activemq/trunk/activemq-karaf/   (with props)
    activemq/trunk/activemq-karaf/pom.xml
    activemq/trunk/activemq-karaf/src/
    activemq/trunk/activemq-karaf/src/main/
    activemq/trunk/activemq-karaf/src/main/resources/
    activemq/trunk/activemq-karaf/src/main/resources/features.xml
Modified:
    activemq/trunk/pom.xml

Propchange: activemq/trunk/activemq-karaf/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Jan 15 15:53:42 2010
@@ -0,0 +1,4 @@
+target
+bin
+.project
+.settings

Added: activemq/trunk/activemq-karaf/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-karaf/pom.xml?rev=899673&view=auto
==============================================================================
--- activemq/trunk/activemq-karaf/pom.xml (added)
+++ activemq/trunk/activemq-karaf/pom.xml Fri Jan 15 15:53:42 2010
@@ -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>
\ No newline at end of file

Added: activemq/trunk/activemq-karaf/src/main/resources/features.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-karaf/src/main/resources/features.xml?rev=899673&view=auto
==============================================================================
--- activemq/trunk/activemq-karaf/src/main/resources/features.xml (added)
+++ activemq/trunk/activemq-karaf/src/main/resources/features.xml Fri Jan 15 15:53:42 2010
@@ -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>
\ No newline at end of file

Modified: activemq/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/pom.xml?rev=899673&r1=899672&r2=899673&view=diff
==============================================================================
--- activemq/trunk/pom.xml (original)
+++ activemq/trunk/pom.xml Fri Jan 15 15:53:42 2010
@@ -124,6 +124,7 @@
     <module>activemq-core</module>
     <module>activemq-fileserver</module>
     <module>activemq-jaas</module>
+    <module>activemq-karaf</module>
     <module>activemq-openwire-generator</module>
     <module>activemq-optional</module>
     <module>activemq-pool</module>