You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by gn...@apache.org on 2011/10/10 10:50:07 UTC

svn commit: r1180830 - in /cxf/trunk/services/wsn: pom.xml src/test/java/org/apache/cxf/wsn/RiTest.java

Author: gnodet
Date: Mon Oct 10 08:50:07 2011
New Revision: 1180830

URL: http://svn.apache.org/viewvc?rev=1180830&view=rev
Log:
[CXF-3848] Try again to fix the 1.5 build

Modified:
    cxf/trunk/services/wsn/pom.xml
    cxf/trunk/services/wsn/src/test/java/org/apache/cxf/wsn/RiTest.java

Modified: cxf/trunk/services/wsn/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/services/wsn/pom.xml?rev=1180830&r1=1180829&r2=1180830&view=diff
==============================================================================
--- cxf/trunk/services/wsn/pom.xml (original)
+++ cxf/trunk/services/wsn/pom.xml Mon Oct 10 08:50:07 2011
@@ -50,7 +50,7 @@
         <dependency>
             <groupId>org.apache.activemq</groupId>
             <artifactId>activemq-core</artifactId>
-            <version>5.5.0</version>
+            <version>5.4.2</version>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>
@@ -82,6 +82,23 @@
             <version>1.6.1</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.xml.ws</groupId>
+            <artifactId>jaxws-rt</artifactId>
+            <version>2.2.5</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.sun.net.httpserver</groupId>
+            <artifactId>http</artifactId>
+            <version>20070405</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 	
 	<build>
@@ -132,6 +149,10 @@
                     <groupId>javax.xml.bind</groupId>
                     <artifactId>jaxb-api</artifactId>
                 </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+                </dependency>
             </dependencies>
         </profile>
     </profiles>

Modified: cxf/trunk/services/wsn/src/test/java/org/apache/cxf/wsn/RiTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/services/wsn/src/test/java/org/apache/cxf/wsn/RiTest.java?rev=1180830&r1=1180829&r2=1180830&view=diff
==============================================================================
--- cxf/trunk/services/wsn/src/test/java/org/apache/cxf/wsn/RiTest.java (original)
+++ cxf/trunk/services/wsn/src/test/java/org/apache/cxf/wsn/RiTest.java Mon Oct 10 08:50:07 2011
@@ -20,7 +20,7 @@ public class RiTest extends WsnBrokerTes
 
     @Override
     public void setUp() throws Exception {
-        Thread.currentThread().setContextClassLoader(new FakeClassLoader(null));
+        Thread.currentThread().setContextClassLoader(new FakeClassLoader("com.sun.xml.ws.spi.ProviderImpl"));
         super.setUp();
     }
 }