You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2007/04/16 13:56:54 UTC

svn commit: r529211 - /activemq/camel/trunk/camel-cxf/pom.xml

Author: jstrachan
Date: Mon Apr 16 04:56:53 2007
New Revision: 529211

URL: http://svn.apache.org/viewvc?view=rev&rev=529211
Log:
applied patches from William Tam to fix the CxfInvokeTest

Modified:
    activemq/camel/trunk/camel-cxf/pom.xml

Modified: activemq/camel/trunk/camel-cxf/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-cxf/pom.xml?view=diff&rev=529211&r1=529210&r2=529211
==============================================================================
--- activemq/camel/trunk/camel-cxf/pom.xml (original)
+++ activemq/camel/trunk/camel-cxf/pom.xml Mon Apr 16 04:56:53 2007
@@ -65,7 +65,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.cxf</groupId>
-      <artifactId>cxf-rt-transports-http</artifactId>
+      <artifactId>cxf-rt-transports-http-jetty</artifactId>
       <version>${cxf.version}</version>
       <scope>test</scope>
     </dependency>
@@ -97,6 +97,42 @@
       </exclusions>
     </dependency>
 
+    <!-- TODO for some reason the jaxb used by CXF is unavailable so we have to provide our own -->
+    <dependency>
+      <groupId>com.sun.xml.bind</groupId>
+      <artifactId>jaxb-impl</artifactId>
+      <version>2.0.1</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.xml</groupId>
+          <artifactId>jsr173</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.jws</groupId>
+          <artifactId>jsr181-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.activation</groupId>
+          <artifactId>activation</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>javax.xml</groupId>
+      <artifactId>jaxb-api</artifactId>
+      <version>2.0</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.xml</groupId>
+          <artifactId>jsr173</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.activation</groupId>
+          <artifactId>activation</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
     <dependency>
       <groupId>org.mortbay.jetty</groupId>
       <artifactId>jetty</artifactId>
@@ -131,7 +167,8 @@
           </includes>
           <excludes>
             <!-- TODO re-enable ASAP! -->
-            <exclude>**/*Test.*</exclude>
+            <exclude>**/CxfTest.*</exclude>
+            <exclude>**/transport/*Test.*</exclude>
           </excludes>
         </configuration>
       </plugin>