You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2013/09/27 06:47:53 UTC

svn commit: r1526792 - in /servicemix/smx4/bundles/trunk: pom.xml qpid-0.24/ qpid-0.24/pom.xml qpid-0.24/src/ qpid-0.24/src/main/ qpid-0.24/src/main/resources/ qpid-0.24/src/main/resources/OSGI-INF/ qpid-0.24/src/main/resources/OSGI-INF/bundle.info

Author: jbonofre
Date: Fri Sep 27 04:47:53 2013
New Revision: 1526792

URL: http://svn.apache.org/r1526792
Log:
[SMX4-1555] Create OSGi bundle for qpid 0.24

Added:
    servicemix/smx4/bundles/trunk/qpid-0.24/
    servicemix/smx4/bundles/trunk/qpid-0.24/pom.xml
    servicemix/smx4/bundles/trunk/qpid-0.24/src/
    servicemix/smx4/bundles/trunk/qpid-0.24/src/main/
    servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/
    servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/OSGI-INF/
    servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/OSGI-INF/bundle.info
Modified:
    servicemix/smx4/bundles/trunk/pom.xml

Modified: servicemix/smx4/bundles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=1526792&r1=1526791&r2=1526792&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Fri Sep 27 04:47:53 2013
@@ -43,6 +43,7 @@
 
     <modules>
         <!-- add modules for all bundles to released in the next batch here -->
+        <module>qpid-0.24</module>
         <module>paranamer-2.5.7</module>
         <module>avro-ipc-1.7.5</module>
         <module>avro-1.7.5</module>

Added: servicemix/smx4/bundles/trunk/qpid-0.24/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/qpid-0.24/pom.xml?rev=1526792&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/qpid-0.24/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/qpid-0.24/pom.xml Fri Sep 27 04:47:53 2013
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/xsd/maven-4.0.0.xsd">
+
+    <!--
+
+        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.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>10</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.qpid</artifactId>
+    <packaging>bundle</packaging>
+    <version>0.24_1-SNAPSHOT</version>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps qpid-common and qpid-client ${pkgVersion} jar files.</description>
+
+    <properties>
+        <pkgGroupId>org.apache.qpid</pkgGroupId>
+        <pkgArtifactId>qpid</pkgArtifactId>
+        <pkgVersion>0.24</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.apache.qpid
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            javax.jms*,
+            javax.naming*,
+            javax.net*,
+            javax.security*,
+            javax.transaction*,
+            edu.emory.mathcs.backport.java.util.concurrent;resolution:=optional,
+            org.ietf.jgss;resolution:=optional,
+            org.slf4j;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}-common</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}-client</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}-common</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}-client</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${pkgGroupId}:${pkgArtifactId}-common</include>
+                                    <include>${pkgGroupId}:${pkgArtifactId}-client</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}-common</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}-client</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>false</createDependencyReducedPom>
+                            <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Added: servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/OSGI-INF/bundle.info
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/OSGI-INF/bundle.info?rev=1526792&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/OSGI-INF/bundle.info (added)
+++ servicemix/smx4/bundles/trunk/qpid-0.24/src/main/resources/OSGI-INF/bundle.info Fri Sep 27 04:47:53 2013
@@ -0,0 +1,27 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URLs:
+        \u001B[33mmvn:${pkgGroupId}/qpid-common/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/qpid-client/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Apache Qpid is a cross-platform Enterprise Messaging system which implements the Advanced Message Queuing Protocol
+    (AMQP), providing message brokers written in C++ and Java, along with clients for C++, Java JMS, .Net, Python,
+    and Ruby.
+
+    Enterprise Messaging systems let programs communicate by exchanging messages, much as people communicate by
+    exchanging email. Unlike email, enterprise messaging systems provide guaranteed delivery, speed, security, and
+    freedom from spam. Until recently, there was no open standard for Enterprise Messaging systems, so programmers
+    either wrote their own, or used expensive proprietary systems.
+
+    AMQP is the first open standard for Enterprise Messaging. It is designed to support messaging for just about any
+    distributed or business application. Routing can be configured flexibly, easily supporting common messaging
+    paradigms like point-to-point, fanout, publish-subscribe, and request-response.
+
+    Apache Qpid implements the latest AMQP specification, providing transaction management, queuing, distribution,
+    security, management, clustering, federation and heterogeneous multi-platform support and a lot more.
+    And Apache Qpid is extremely fast. Apache Qpid aims to be 100% AMQP Compliant.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://qpid.apache.org/\u001B[0m