You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/11/18 20:21:59 UTC

svn commit: r1036581 - in /cxf/trunk: distribution/manifest/pom.xml rt/frontend/jaxrs/pom.xml

Author: dkulp
Date: Thu Nov 18 19:21:59 2010
New Revision: 1036581

URL: http://svn.apache.org/viewvc?rev=1036581&view=rev
Log:
Make sure abdera/axiom are in the manifest jar so just adding the jars
to lib should work

Modified:
    cxf/trunk/distribution/manifest/pom.xml
    cxf/trunk/rt/frontend/jaxrs/pom.xml

Modified: cxf/trunk/distribution/manifest/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/manifest/pom.xml?rev=1036581&r1=1036580&r2=1036581&view=diff
==============================================================================
--- cxf/trunk/distribution/manifest/pom.xml (original)
+++ cxf/trunk/distribution/manifest/pom.xml Thu Nov 18 19:21:59 2010
@@ -289,6 +289,22 @@
              <groupId>com.sun.xml.fastinfoset</groupId>
              <artifactId>FastInfoset</artifactId>
         </dependency>
+
+        <dependency>
+            <groupId>org.apache.abdera</groupId>
+            <artifactId>abdera-core</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.abdera</groupId>
+            <artifactId>abdera-parser</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.abdera</groupId>
+            <artifactId>abdera-extensions-json</artifactId>
+            <optional>true</optional>
+        </dependency>
     </dependencies>
 
     <build>

Modified: cxf/trunk/rt/frontend/jaxrs/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/jaxrs/pom.xml?rev=1036581&r1=1036580&r2=1036581&view=diff
==============================================================================
--- cxf/trunk/rt/frontend/jaxrs/pom.xml (original)
+++ cxf/trunk/rt/frontend/jaxrs/pom.xml Thu Nov 18 19:21:59 2010
@@ -94,19 +94,16 @@
         <dependency>
             <groupId>org.apache.abdera</groupId>
             <artifactId>abdera-core</artifactId>
-            <version>${cxf.abdera.version}</version>
             <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>org.apache.abdera</groupId>
             <artifactId>abdera-parser</artifactId>
-            <version>${cxf.abdera.version}</version>
             <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>org.apache.abdera</groupId>
             <artifactId>abdera-extensions-json</artifactId>
-            <version>${cxf.abdera.version}</version>
             <optional>true</optional>
         </dependency>
         <dependency>