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 2012/01/23 12:14:08 UTC

svn commit: r1234747 - in /servicemix/smx4/bundles/trunk: ./ xfire-1.2.6/ xfire-1.2.6/src/ xfire-1.2.6/src/main/ xfire-1.2.6/src/main/resources/ xfire-1.2.6/src/main/resources/OSGI-INF/

Author: jbonofre
Date: Mon Jan 23 11:14:07 2012
New Revision: 1234747

URL: http://svn.apache.org/viewvc?rev=1234747&view=rev
Log:
[SMX4-1078] Create OSGi bundle for xfire 1.2.6

Added:
    servicemix/smx4/bundles/trunk/xfire-1.2.6/
    servicemix/smx4/bundles/trunk/xfire-1.2.6/pom.xml
    servicemix/smx4/bundles/trunk/xfire-1.2.6/src/
    servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/
    servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/resources/
    servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/resources/OSGI-INF/
    servicemix/smx4/bundles/trunk/xfire-1.2.6/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=1234747&r1=1234746&r2=1234747&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Mon Jan 23 11:14:07 2012
@@ -94,6 +94,7 @@
         <module>stringtemplate-4.0.2</module>
         <module>tagsoup-1.2.1</module>
         <module>xerces-2.10.0</module>
+        <module>xfire-1.2.6</module>
     </modules>
 
 </project>

Added: servicemix/smx4/bundles/trunk/xfire-1.2.6/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/xfire-1.2.6/pom.xml?rev=1234747&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/xfire-1.2.6/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/xfire-1.2.6/pom.xml Mon Jan 23 11:14:07 2012
@@ -0,0 +1,278 @@
+<?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>8-SNAPSHOT</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+    
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.xfire</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.2.6_1-SNAPSHOT</version>
+    <name>Apache ServiceMix :: Bundles :: xfire</name>
+    <description>
+        This OSGi bundle wraps xfire-aegis, xfire-annotations, xfire-castor, xfire-core, xfire-generator,
+        xfire-jaxb2, xfire-jaxws, xfire-jibx, xfire-xmlbeans ${pkgVersion} jar files.
+    </description>
+    
+    <properties>
+        <pkgGroupId>org.codehaus.xfire</pkgGroupId>
+        <pkgVersion>1.2.6</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.codehaus.xfire
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !org.codehaus.xfire*,
+            com.thoughtworks.qdox*;version="[1.5,2)",
+            org.apache.commons.attributes;version="[2.1,3)",
+            javanet.staxutils*,
+            com.sun.codemodel*;resolution:=optional,
+            com.sun.tools.xjc*;resolution:=optional,
+            com.meterware.httpunit*;resolution:=optional,
+            com.meterware.servletunit*;resolution:=optional,
+            org.mortbay.http*;resolution:=optional,
+            org.springframework.web*;resolution:=optional,
+            org.exolab.castor*;resolution:=optional,
+            org.jibx*;resolution:=optional,
+            junit*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+    
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-aegis</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-annotations</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-castor</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-core</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-generator</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-jaxb2</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-jaxws</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-jibx</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>jibx</groupId>
+                    <artifactId>jibx-run</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>jibx</groupId>
+                    <artifactId>jibx-bind</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>jibx</groupId>
+                    <artifactId>jibx-extras</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-xmlbeans</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>castor</groupId>
+                    <artifactId>castor</artifactId>
+                </exclusion>
+            </exclusions>
+        </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}:xfire-aegis</include>
+                                    <include>${pkgGroupId}:xfire-annotations</include>
+                                    <include>${pkgGroupId}:xfire-castor</include>
+                                    <include>${pkgGroupId}:xfire-core</include>
+                                    <include>${pkgGroupId}:xfire-generator</include>
+                                    <include>${pkgGroupId}:xfire-jaxb2</include>
+                                    <include>${pkgGroupId}:xfire-jaxws</include>
+                                    <include>${pkgGroupId}:xfire-jibx</include>
+                                    <include>${pkgGroupId}:xfire-xmlbeans</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-aegis</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-annotations</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-castor</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-core</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-generator</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-jaxb2</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-jaxws</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-jibx</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:xfire-xmlbeans</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/resources/OSGI-INF/bundle.info
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/resources/OSGI-INF/bundle.info?rev=1234747&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/resources/OSGI-INF/bundle.info (added)
+++ servicemix/smx4/bundles/trunk/xfire-1.2.6/src/main/resources/OSGI-INF/bundle.info Mon Jan 23 11:14:07 2012
@@ -0,0 +1,37 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URLs:
+        \u001B[33mmvn:${pkgGroupId}/xfire-aegis/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-annotations/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-castor/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-core/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-generator/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-jaxb2/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-jaxws/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-jibx/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/xfire-xmlbeans/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Codehaus XFire is a next-generation java SOAP framework. Codehaus XFire
+    makes service oriented development approachable through its easy to use
+    API and support for standards. It is also highly performant since it is
+    built on a low memory StAX based model.
+
+    XFire supports the following features:
+        *  Support for important Web Service standards - SOAP, WSDL, WS-I
+           Basic Profile, WS-Addressing, WS-Security, etc.
+        * High performance SOAP Stack
+        * Pluggable bindings POJOs, XMLBeans, JAXB 1.1, JAXB 2.0, and Castor
+          support
+        * JSR 181 API to configure services via Java 5 and 1.4
+          (Commons attributes JSR 181 syntax)
+        * Support for many different transports - HTTP, JMS, XMPP, In-JVM, etc.
+        * Embeddable and Intuitive API
+        * Spring, Pico, Plexus, and Loom support.
+        * JBI Support
+        * Client and server stub generation
+        * JAX-WS early access support
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://xfire.codehaus.org/\u001B[0m