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 2009/09/01 22:09:54 UTC

svn commit: r810207 - in /cxf/branches/2.2.x-fixes/systests: aegis/pom.xml aegis/src/test/java/org/apache/cxf/systest/aegis/AegisJaxWsImpl.java uncategorized/src/test/java/org/apache/cxf/systest/jms/Server.java

Author: dkulp
Date: Tue Sep  1 20:09:54 2009
New Revision: 810207

URL: http://svn.apache.org/viewvc?rev=810207&view=rev
Log:
Couple more fixes and checkstyle fixes

Modified:
    cxf/branches/2.2.x-fixes/systests/aegis/pom.xml
    cxf/branches/2.2.x-fixes/systests/aegis/src/test/java/org/apache/cxf/systest/aegis/AegisJaxWsImpl.java
    cxf/branches/2.2.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/jms/Server.java

Modified: cxf/branches/2.2.x-fixes/systests/aegis/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/aegis/pom.xml?rev=810207&r1=810206&r2=810207&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/aegis/pom.xml (original)
+++ cxf/branches/2.2.x-fixes/systests/aegis/pom.xml Tue Sep  1 20:09:54 2009
@@ -311,14 +311,6 @@
             </exclusions>
         </dependency>
         
-
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-rt-databinding-sdo</artifactId>
-            <version>${project.version}</version>
-            <scope>test</scope>
-        </dependency>
-
         <dependency>
             <groupId>org.springframework.security</groupId>
             <artifactId>spring-security-acl</artifactId>

Modified: cxf/branches/2.2.x-fixes/systests/aegis/src/test/java/org/apache/cxf/systest/aegis/AegisJaxWsImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/aegis/src/test/java/org/apache/cxf/systest/aegis/AegisJaxWsImpl.java?rev=810207&r1=810206&r2=810207&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/aegis/src/test/java/org/apache/cxf/systest/aegis/AegisJaxWsImpl.java (original)
+++ cxf/branches/2.2.x-fixes/systests/aegis/src/test/java/org/apache/cxf/systest/aegis/AegisJaxWsImpl.java Tue Sep  1 20:09:54 2009
@@ -23,10 +23,8 @@
 
 import javax.jws.WebService;
 
-import org.apache.cxf.annotations.Logging;
 import org.apache.cxf.systest.aegis.bean.Item;
 
-@Logging
 @WebService(endpointInterface = "org.apache.cxf.systest.aegis.AegisJaxWs")
 public class AegisJaxWsImpl implements AegisJaxWs {
     

Modified: cxf/branches/2.2.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/jms/Server.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/jms/Server.java?rev=810207&r1=810206&r2=810207&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/jms/Server.java (original)
+++ cxf/branches/2.2.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/systest/jms/Server.java Tue Sep  1 20:09:54 2009
@@ -23,9 +23,6 @@
 import javax.xml.ws.soap.SOAPBinding;
 
 import org.apache.cxf.jaxws.EndpointImpl;
-import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
-import org.apache.cxf.systest.jaxws.Hello;
-import org.apache.cxf.systest.jaxws.HelloImpl;
 import org.apache.cxf.testutil.common.AbstractBusTestServerBase;
 
 public class Server extends AbstractBusTestServerBase {