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 2010/07/27 15:22:15 UTC

svn commit: r979687 - in /servicemix/smx4/bundles/trunk: jibx-1.1.3/ jibx-1.1.3/pom.xml xfire-1.2.5/pom.xml xmlpull-1.1.3.1/ xmlpull-1.1.3.1/pom.xml

Author: jbonofre
Date: Tue Jul 27 13:22:14 2010
New Revision: 979687

URL: http://svn.apache.org/viewvc?rev=979687&view=rev
Log:
Add jibx and xmlpull OSGi bundles (dependencies of xfire bundle).

Added:
    servicemix/smx4/bundles/trunk/jibx-1.1.3/
    servicemix/smx4/bundles/trunk/jibx-1.1.3/pom.xml   (with props)
    servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/
    servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/pom.xml   (with props)
Modified:
    servicemix/smx4/bundles/trunk/xfire-1.2.5/pom.xml

Added: servicemix/smx4/bundles/trunk/jibx-1.1.3/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/jibx-1.1.3/pom.xml?rev=979687&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/jibx-1.1.3/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/jibx-1.1.3/pom.xml Tue Jul 27 13:22:14 2010
@@ -0,0 +1,122 @@
+<?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>4</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.jibx</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.1.3_1-SNAPSHOT</version>
+    <name>Apache ServiceMix Bundles: jibx-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps jibx ${pkgVersion} jar files.
+    </description>
+    
+    <properties>
+        <pkgGroupId>jibx</pkgGroupId>
+        <pkgVersion>1.1.3</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.jibx
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !org.jibx*,
+            org.dom4j*;version="[1.6,2)",
+            org.xmlpull*;version="[1.1.3.1,2)",
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+    
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>jibx-bind</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>jibx-extras</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>jibx-run</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </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}:jibx-bind</include>
+                                    <include>${pkgGroupId}:jibx-extras</include>
+                                    <include>${pkgGroupId}:jibx-run</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:jibx-bind</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:jibx-extras</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:jibx-run</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file

Propchange: servicemix/smx4/bundles/trunk/jibx-1.1.3/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: servicemix/smx4/bundles/trunk/xfire-1.2.5/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/xfire-1.2.5/pom.xml?rev=979687&r1=979686&r2=979687&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/xfire-1.2.5/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/xfire-1.2.5/pom.xml Tue Jul 27 13:22:14 2010
@@ -44,14 +44,18 @@
         </servicemix.osgi.export.pkg>
         <servicemix.osgi.import.pkg>
             !org.codehaus.xfire*,
-            com.meterware*;resolution:=optional,
-            com.sun*;resolution:=optional,
-            com.thoughtworks.qdox*;resolution:=optional,
-            javanet.staxutils*;resolution:=optional,
-            junit.framework*;resolution:=optional,
-            org.apache.commons.attributes;resolution:=optional,
-            org.mortbay.http;resolution:=optional,
+            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>
@@ -59,6 +63,36 @@
     <dependencies>
         <dependency>
             <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-aegis</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-annotations</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-castor</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-core</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-generator</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
             <artifactId>xfire-jaxb2</artifactId>
             <version>${pkgVersion}</version>
             <optional>true</optional>
@@ -69,6 +103,18 @@
             <version>${pkgVersion}</version>
             <optional>true</optional>
         </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-jibx</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>xfire-xmlbeans</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </dependency>
     </dependencies>
     
     <build>
@@ -85,12 +131,49 @@
                         <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>
@@ -102,6 +185,18 @@
                                         <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>

Added: servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/pom.xml?rev=979687&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/pom.xml Tue Jul 27 13:22:14 2010
@@ -0,0 +1,95 @@
+<?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>4</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.xmlpull</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.1.3.1_1-SNAPSHOT</version>
+    <name>Apache ServiceMix Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+    
+    <properties>
+        <pkgGroupId>xmlpull</pkgGroupId>
+        <pkgArtifactId>xmlpull</pkgArtifactId>
+        <pkgVersion>1.1.3.1</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.xmlpull
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !org.xmlpull*,
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+    
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </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}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file

Propchange: servicemix/smx4/bundles/trunk/xmlpull-1.1.3.1/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain