You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gn...@apache.org on 2010/06/02 21:10:58 UTC

svn commit: r950728 - in /activemq/trunk: ./ activemq-blueprint/ activemq-blueprint/src/ activemq-blueprint/src/main/ activemq-blueprint/src/main/resources/ activemq-blueprint/src/main/resources/OSGI-INF/ activemq-blueprint/src/main/resources/OSGI-INF/...

Author: gnodet
Date: Wed Jun  2 19:10:57 2010
New Revision: 950728

URL: http://svn.apache.org/viewvc?rev=950728&view=rev
Log:
AMQ-2762: Support for blueprint as a custom namespace handler

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

Propchange: activemq/trunk/activemq-blueprint/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jun  2 19:10:57 2010
@@ -0,0 +1,11 @@
+
+.project
+.classpath
+target
+.wtpmodules
+bin
+.settings
+surefire*.properties
+*.iml
+eclipse-classes
+

Added: activemq/trunk/activemq-blueprint/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-blueprint/pom.xml?rev=950728&view=auto
==============================================================================
--- activemq/trunk/activemq-blueprint/pom.xml (added)
+++ activemq/trunk/activemq-blueprint/pom.xml Wed Jun  2 19:10:57 2010
@@ -0,0 +1,76 @@
+<?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-blueprint</artifactId>
+  <packaging>bundle</packaging>
+  <name>ActiveMQ :: Blueprint</name>
+  <description>The ActiveMQ Message Broker and Client implementations</description>
+
+  <properties>
+    <activemq.osgi.import.pkg>
+		org.apache.xbean*;version="[3.7,4)",
+      	*
+    </activemq.osgi.import.pkg>
+  </properties>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.aries.blueprint</groupId>
+			<artifactId>org.apache.aries.blueprint</artifactId>
+			<version>0.1-incubating</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.xbean</groupId>
+			<artifactId>xbean-blueprint</artifactId>
+			<version>3.8-SNAPSHOT</version>
+		</dependency>
+	</dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+			<!--Fragment-Host>org.apache.activemq.activemq-core;version=[$(version;==;${activemq.osgi.version}),$(version;=+;${activemq.osgi.version}))</Fragment-Host-->
+			<Fragment-Host>org.apache.activemq.activemq-core</Fragment-Host>
+          </instructions>
+        </configuration>
+      </plugin>
+	<plugin>
+		<artifactId>maven-resources-plugin</artifactId>
+		<version>2.3</version>
+	</plugin>
+	<plugin>
+		<artifactId>maven-install-plugin</artifactId>
+		<version>2.2</version>
+	</plugin>
+    </plugins>
+  </build>
+
+</project>

Added: activemq/trunk/activemq-blueprint/src/main/resources/OSGI-INF/blueprint/activemq-blueprint.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-blueprint/src/main/resources/OSGI-INF/blueprint/activemq-blueprint.xml?rev=950728&view=auto
==============================================================================
--- activemq/trunk/activemq-blueprint/src/main/resources/OSGI-INF/blueprint/activemq-blueprint.xml (added)
+++ activemq/trunk/activemq-blueprint/src/main/resources/OSGI-INF/blueprint/activemq-blueprint.xml Wed Jun  2 19:10:57 2010
@@ -0,0 +1,35 @@
+<?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.
+-->
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
+
+    <service id="ActiveMQXBeanNamespaceHandler"
+             interface="org.apache.aries.blueprint.NamespaceHandler">
+        <service-properties>
+            <entry key="osgi.service.blueprint.namespace" value="http://activemq.apache.org/schema/core"/>
+        </service-properties>
+        <bean class="org.apache.xbean.blueprint.context.impl.XBeanNamespaceHandler">
+            <argument value="http://activemq.apache.org/schema/core"/>
+            <argument value="activemq.xsd"/>
+            <argument ref="blueprintBundle"/>
+            <argument value="META-INF/services/org/apache/xbean/spring/http/activemq.apache.org/schema/core"/>
+        </bean>
+    </service>
+
+</blueprint>

Modified: 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=950728&r1=950727&r2=950728&view=diff
==============================================================================
--- activemq/trunk/activemq-karaf/src/main/resources/features.xml (original)
+++ activemq/trunk/activemq-karaf/src/main/resources/features.xml Wed Jun  2 19:10:57 2010
@@ -1,50 +1,51 @@
 <features>
-    <repository>mvn:org.apache.felix.karaf/apache-felix-karaf/1.1.0-SNAPSHOT/xml/features</repository>
+    <repository>mvn:org.apache.felix.karaf/apache-felix-karaf/1.6.0/xml/features</repository>
     <repository>mvn:org.ops4j.pax.web/features/0.7.2/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> 
+        <bundle>mvn:org.apache.aries.transaction/org.apache.aries.transaction.manager/0.1-incubating</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="spring" version="${spring-version}">
         <bundle>mvn:org.springframework/spring-core/${spring-version}</bundle>
         <bundle>mvn:org.springframework/spring-beans/${spring-version}</bundle>
         <bundle>mvn:org.springframework/spring-aop/${spring-version}</bundle>
         <bundle>mvn:org.springframework/spring-context/${spring-version}</bundle>
         <bundle>mvn:org.springframework/spring-context-support/${spring-version}</bundle>
+        <bundle>mvn:org.springframework/spring-tx/${spring-version}</bundle> 
     </feature>
     
     <feature name="activemq" version="${activemq-version}">
         <feature version="1.1.1">servlet-2.5</feature>
-        <feature version="${spring-version}">spring</feature>
-        <feature version="1.2.0">spring-dm</feature> 
-        <feature version="4.0.0">connector</feature> 
+        <bundle>mvn:org.apache.geronimo.specs/geronimo-annotation_1.0_spec/1.1.1</bundle>
+        <bundle>mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1</bundle> 
         <bundle>mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1</bundle> 
         <bundle>mvn:commons-pool/commons-pool/${commons-pool-version}</bundle> 
         <bundle>mvn:commons-collections/commons-collections/${commons-collections-version}</bundle>
         <bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-lang/2.4_3</bundle>
         <bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.oro/2.0.8_3</bundle>
         <bundle>mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.velocity/1.6.2_3</bundle>
-        <bundle>mvn:org.apache.xbean/xbean-spring/${xbean-version}</bundle> 
         <bundle>mvn:org.apache.activemq/activemq-core/${activemq-version}</bundle> 
         <bundle>mvn:org.apache.activemq/kahadb/${activemq-version}</bundle> 
-        <bundle>mvn:org.apache.activemq/activemq-ra/${activemq-version}</bundle> 
         <bundle>mvn:org.apache.activemq/activemq-console/${activemq-version}</bundle> 
         <bundle>mvn:org.apache.activemq/activemq-pool/${activemq-version}</bundle> 
         <bundle>mvn:org.apache.servicemix.activemq/org.apache.servicemix.activemq.commands/4.1.0-SNAPSHOT</bundle> 
     </feature>
+
+    <feature name="activemq-spring" version="${activemq-version}">
+        <feature version="${spring-version}">spring</feature>
+        <feature version="1.2.0">spring-dm</feature> 
+        <feature version="${activemq-version}">activemq</feature> 
+        <bundle>mvn:org.apache.xbean/xbean-spring/${xbean-version}</bundle> 
+    </feature>
+
+    <feature name="activemq-blueprint" version="${activemq-version}">
+        <feature version="${activemq-version}">activemq</feature> 
+        <bundle>mvn:org.apache.servicemix.specs/org.apache.servicemix.specs.scripting-api-1.0/1.5.0</bundle>
+        <bundle>mvn:org.apache.commons/commons-jexl/2.0.1</bundle>
+        <bundle>mvn:org.apache.xbean/xbean-blueprint/${xbean-version}</bundle> 
+        <bundle>mvn:org.apache.activemq/activemq-blueprint/${activemq-version}</bundle> 
+    </feature>
     
     <!-- do "features:install pax-web" before installing this one  -->
     <feature name="activemq-web-console" version="${activemq-version}">

Modified: activemq/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/pom.xml?rev=950728&r1=950727&r2=950728&view=diff
==============================================================================
--- activemq/trunk/pom.xml (original)
+++ activemq/trunk/pom.xml Wed Jun  2 19:10:57 2010
@@ -80,9 +80,9 @@
     <xmlbeans-version>2.0.0-beta1</xmlbeans-version>
     <xmlpull-version>1.1.3.4d_b4_min</xmlpull-version>
     <xstream-version>1.3.1</xstream-version>
-    <xbean-version>3.6</xbean-version>
+    <xbean-version>3.7</xbean-version>
     <velocity-version>1.6.2</velocity-version>
-    <maven-bundle-plugin-version>2.0.1</maven-bundle-plugin-version>
+    <maven-bundle-plugin-version>2.1.0</maven-bundle-plugin-version>
     <maven-surefire-plugin-version>2.5</maven-surefire-plugin-version>
     <commons-net-version>2.0</commons-net-version>
     <ftpserver-version>1.0.0</ftpserver-version>
@@ -137,6 +137,7 @@
     <module>activemq-core</module>
     <module>activemq-fileserver</module>
     <module>activemq-jaas</module>
+    <module>activemq-blueprint</module>
     <module>activemq-karaf</module>
     <module>activemq-openwire-generator</module>
     <module>activemq-optional</module>
@@ -1096,6 +1097,7 @@
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
         <extensions>true</extensions>
+		<inherited>true</inherited>
         <configuration>
           <instructions>
             <Bundle-Name>${project.artifactId}</Bundle-Name>
@@ -1112,6 +1114,20 @@
             <_failok>${servicemix.osgi.failok}</_failok>
           </instructions>
         </configuration>
+		<executions>
+          <execution>
+            <id>cleanVersions</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>cleanVersions</goal>
+            </goals>
+            <configuration>
+              <versions>
+                <activemq.osgi.version>${project.version}</activemq.osgi.version>
+              </versions>
+            </configuration>
+          </execution>
+        </executions>
       </plugin>
     </plugins>
   </build>