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 2013/07/18 19:18:23 UTC

svn commit: r1504541 - in /cxf/trunk/systests/uncategorized: pom.xml src/test/java/org/apache/cxf/systest/simple/impl/WSSimpleImpl.java

Author: dkulp
Date: Thu Jul 18 17:18:22 2013
New Revision: 1504541

URL: http://svn.apache.org/r1504541
Log:
Don't pull in all of servicemix-core for the tests

Modified:
    cxf/trunk/systests/uncategorized/pom.xml
    cxf/trunk/systests/uncategorized/src/test/java/org/apache/cxf/systest/simple/impl/WSSimpleImpl.java

Modified: cxf/trunk/systests/uncategorized/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/uncategorized/pom.xml?rev=1504541&r1=1504540&r2=1504541&view=diff
==============================================================================
--- cxf/trunk/systests/uncategorized/pom.xml (original)
+++ cxf/trunk/systests/uncategorized/pom.xml Thu Jul 18 17:18:22 2013
@@ -272,7 +272,6 @@
         <dependency>
             <groupId>nekohtml</groupId>
             <artifactId>nekohtml</artifactId>
-            <version>1.9.6.2</version>
             <scope>test</scope>
         </dependency>
         <dependency>
@@ -323,27 +322,8 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-core</artifactId>
-            <version>3.3.2</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>jaxen</groupId>
-                    <artifactId>jaxen</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.jencks</groupId>
-                    <artifactId>jencks</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.codehaus.woodstox</groupId>
-                    <artifactId>wstx-asl</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>woodstox</groupId>
-                    <artifactId>wstx-asl</artifactId>
-                </exclusion>
-            </exclusions>
+             <groupId>xerces</groupId>
+             <artifactId>xercesImpl</artifactId>
         </dependency>
         <dependency>
              <groupId>com.sun.xml.fastinfoset</groupId>

Modified: cxf/trunk/systests/uncategorized/src/test/java/org/apache/cxf/systest/simple/impl/WSSimpleImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/uncategorized/src/test/java/org/apache/cxf/systest/simple/impl/WSSimpleImpl.java?rev=1504541&r1=1504540&r2=1504541&view=diff
==============================================================================
--- cxf/trunk/systests/uncategorized/src/test/java/org/apache/cxf/systest/simple/impl/WSSimpleImpl.java (original)
+++ cxf/trunk/systests/uncategorized/src/test/java/org/apache/cxf/systest/simple/impl/WSSimpleImpl.java Thu Jul 18 17:18:22 2013
@@ -19,12 +19,10 @@
 
 package org.apache.cxf.systest.simple.impl;
 
-import javax.ejb.Stateless;
 import javax.jws.WebService;
 
 import org.apache.cxf.systest.simple.intf.WSSimple;
 
-@Stateless
 @WebService(name = "WSSimpleImpl123", targetNamespace = "http://systest.cxf.apache.org")
 public class WSSimpleImpl implements WSSimple {