You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/01/04 11:24:30 UTC

svn commit: r608794 - in /servicemix/smx4/nmr/trunk: bundles/pom.xml bundles/woodstox/ bundles/woodstox/pom.xml pom.xml

Author: gnodet
Date: Fri Jan  4 02:24:28 2008
New Revision: 608794

URL: http://svn.apache.org/viewvc?rev=608794&view=rev
Log:
Add woodstox bundle

Added:
    servicemix/smx4/nmr/trunk/bundles/woodstox/   (with props)
    servicemix/smx4/nmr/trunk/bundles/woodstox/pom.xml
Modified:
    servicemix/smx4/nmr/trunk/bundles/pom.xml
    servicemix/smx4/nmr/trunk/pom.xml

Modified: servicemix/smx4/nmr/trunk/bundles/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/bundles/pom.xml?rev=608794&r1=608793&r2=608794&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/bundles/pom.xml (original)
+++ servicemix/smx4/nmr/trunk/bundles/pom.xml Fri Jan  4 02:24:28 2008
@@ -28,13 +28,14 @@
         <version>1.0-SNAPSHOT</version>
     </parent>
 
-    <groupId>org.apache.servicemix.runtime.bundles</groupId>
+    <groupId>org.apache.servicemix.nmr.bundles</groupId>
     <artifactId>bundles</artifactId>
     <packaging>pom</packaging>
     <version>1.0-SNAPSHOT</version>
     <name>ServiceMix OSGI Common Bundles</name>
 
     <modules>
+        <module>woodstox</module>
     </modules>
 
     <properties>

Propchange: servicemix/smx4/nmr/trunk/bundles/woodstox/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Jan  4 02:24:28 2008
@@ -0,0 +1,9 @@
+target
+*.iml
+*.ipr
+*.iws
+.classpath
+.project
+.settings
+
+

Added: servicemix/smx4/nmr/trunk/bundles/woodstox/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/bundles/woodstox/pom.xml?rev=608794&view=auto
==============================================================================
--- servicemix/smx4/nmr/trunk/bundles/woodstox/pom.xml (added)
+++ servicemix/smx4/nmr/trunk/bundles/woodstox/pom.xml Fri Jan  4 02:24:28 2008
@@ -0,0 +1,74 @@
+<?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">
+
+    <!--
+
+        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.nmr.bundles</groupId>
+        <artifactId>bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>${pom.groupId}.${pkgArtifactId}-${pkgVersion}</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.0-SNAPSHOT</version>
+    <name>ServiceMix OSGI Common Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgArtifactId>woodstox</pkgArtifactId>
+        <pkgVersion>${woodstox.version}</pkgVersion>
+        <servicemix.osgi.import.pkg>
+            com.sun.msv*;resolution:=optional,
+            org.relaxng*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+        <servicemix.osgi.export>
+            com.ctc.wstx*;version=${pkgVersion},
+            org.codehaus.stax2*;version=${pkgVersion},
+        </servicemix.osgi.export>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>wstx-asl</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+		            <groupId>stax</groupId>
+		            <artifactId>stax-api</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+            <version>${geronimo.stax.version}</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+
+</project>

Modified: servicemix/smx4/nmr/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/pom.xml?rev=608794&r1=608793&r2=608794&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/pom.xml (original)
+++ servicemix/smx4/nmr/trunk/pom.xml Fri Jan  4 02:24:28 2008
@@ -35,6 +35,7 @@
   <name>Apache ServiceMix NMR</name>
 
   <modules>
+    <module>bundles</module>
     <module>nmr</module>
     <module>jbi</module>
   </modules>
@@ -81,6 +82,7 @@
       <smx.runtime.version>1.0-m2-SNAPSHOT</smx.runtime.version>
       <spring.osgi.version>1.0-rc1</spring.osgi.version>
       <spring.version>2.5</spring.version>
+      <woodstox.version>3.2.3</woodstox.version>
       <xbean.version>3.3-SNAPSHOT</xbean.version>
       <xstream.version>1.2.2</xstream.version>
   </properties>