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/21 18:12:46 UTC

svn commit: r1234367 - in /servicemix/smx4/bundles/trunk: ./ jaxen-1.1.3/ jaxen-1.1.3/src/ jaxen-1.1.3/src/main/ jaxen-1.1.3/src/main/resources/ jaxen-1.1.3/src/main/resources/OSGI-INF/

Author: jbonofre
Date: Sat Jan 21 17:12:45 2012
New Revision: 1234367

URL: http://svn.apache.org/viewvc?rev=1234367&view=rev
Log:
[SMX4-1060] Create OSGi bundle for jaxen 1.1.3

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

Added: servicemix/smx4/bundles/trunk/jaxen-1.1.3/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/jaxen-1.1.3/pom.xml?rev=1234367&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/jaxen-1.1.3/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/jaxen-1.1.3/pom.xml Sat Jan 21 17:12:45 2012
@@ -0,0 +1,104 @@
+<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">
+
+    <!--
+
+        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.jaxen</artifactId>
+    <version>1.1.3_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <properties>
+        <pkgGroupId>jaxen</pkgGroupId>
+        <pkgArtifactId>jaxen</pkgArtifactId>
+        <pkgVersion>1.1.3</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.jaxen
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+			nu.xom*;resolution:=optional;version="[1.1,2)",
+			org.dom4j*;resolution:=optional;version="[1.6.1,2)",
+			org.jdom*;resolution:=optional;version="[1.0,2)",
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>maven-plugins</groupId>
+                    <artifactId>maven-findbugs-plugin</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>maven-plugins</groupId>
+                    <artifactId>maven-cobertura-plugin</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}:${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>

Added: servicemix/smx4/bundles/trunk/jaxen-1.1.3/src/main/resources/OSGI-INF/bundle.info
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/jaxen-1.1.3/src/main/resources/OSGI-INF/bundle.info?rev=1234367&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/jaxen-1.1.3/src/main/resources/OSGI-INF/bundle.info (added)
+++ servicemix/smx4/bundles/trunk/jaxen-1.1.3/src/main/resources/OSGI-INF/bundle.info Sat Jan 21 17:12:45 2012
@@ -0,0 +1,13 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Jaxen is an open source XPath library written in Java. It is adaptable to many different object models, including
+    DOM, XOM, dom4j, and JDOM. Is it also possible to write adapters that treat non-XML trees such as compiled Java
+    byte code or Java beans as XML, thus enabling you to query these trees with XPath too.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://jaxen.codehaus.org/\u001B[0m

Modified: servicemix/smx4/bundles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=1234367&r1=1234366&r2=1234367&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Sat Jan 21 17:12:45 2012
@@ -1,3 +1,4 @@
+<?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/maven-v4_0_0.xsd">
 
     <!--
@@ -29,9 +30,9 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-pom</artifactId>
-      <version>5</version>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>servicemix-pom</artifactId>
+        <version>5</version>
     </parent>
 
     <groupId>org.apache.servicemix.bundles</groupId>
@@ -41,37 +42,38 @@
     <name>Apache ServiceMix :: Bundles</name>
 
     <modules>
-      <module>bundles-pom</module>
-      <module>smack-3.2.1</module>
-      <module>paranamer-2.4</module>
-      <module>jopt-simple-4.3</module>
-      <module>not-yet-commons-ssl-0.3.11</module>
-      <module>guava-11</module>
-      <module>twitter4j-2.2.5</module>
-      <module>libthrift-0.7.0</module>
-      <module>libthrift-0.8.0</module>
-      <module>snappy-java-1.0.4.1</module>
-      <module>saxon-9.3.0.11</module>
-      <module>junit-4.10</module>
-      <module>ant-1.8.2</module>
-      <module>antlr-3.4</module>
-      <module>asm-3.3.1</module>
-      <module>aspectj-1.6.12</module>
-      <module>aws-java-sdk-1.3.0</module>
-      <module>castor-1.3.2</module>
-      <module>cglib-2.2.2</module>
-      <module>derbynet-10.8.2.2</module>
-      <module>dozer-5.3.2</module>
-      <module>ehcache-2.5.0</module>
-      <module>fastinfoset-1.2.12</module>
-      <module>scala-compiler-2.9.1</module>
-      <module>gae-1.6.1.1</module>
-      <module>guava-11.0.1</module>
-      <module>hadoop-core-1.0.0</module>
-      <module>jain-sip-ri-1.2.166</module>
-      <module>japex-1.2.4</module>
-      <module>jasper-6.0.35</module>
-      <module>jasypt-1.9.0</module>
+        <module>bundles-pom</module>
+        <module>smack-3.2.1</module>
+        <module>paranamer-2.4</module>
+        <module>jopt-simple-4.3</module>
+        <module>not-yet-commons-ssl-0.3.11</module>
+        <module>guava-11</module>
+        <module>twitter4j-2.2.5</module>
+        <module>libthrift-0.7.0</module>
+        <module>libthrift-0.8.0</module>
+        <module>snappy-java-1.0.4.1</module>
+        <module>saxon-9.3.0.11</module>
+        <module>junit-4.10</module>
+        <module>ant-1.8.2</module>
+        <module>antlr-3.4</module>
+        <module>asm-3.3.1</module>
+        <module>aspectj-1.6.12</module>
+        <module>aws-java-sdk-1.3.0</module>
+        <module>castor-1.3.2</module>
+        <module>cglib-2.2.2</module>
+        <module>derbynet-10.8.2.2</module>
+        <module>dozer-5.3.2</module>
+        <module>ehcache-2.5.0</module>
+        <module>fastinfoset-1.2.12</module>
+        <module>scala-compiler-2.9.1</module>
+        <module>gae-1.6.1.1</module>
+        <module>guava-11.0.1</module>
+        <module>hadoop-core-1.0.0</module>
+        <module>jain-sip-ri-1.2.166</module>
+        <module>japex-1.2.4</module>
+        <module>jasper-6.0.35</module>
+        <module>jasypt-1.9.0</module>
+        <module>jaxen-1.1.3</module>
     </modules>
 
 </project>