[jbossws-commits] JBossWS SVN: r16120 - in container/jboss71/branches/jbossws-jboss711: src/main/java/org/jboss/as/webservices/tests and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Apr 6 12:15:10 EDT 2012


Author: alessio.soldano at jboss.com
Date: 2012-04-06 12:15:09 -0400 (Fri, 06 Apr 2012)
New Revision: 16120

Added:
   container/jboss71/branches/jbossws-jboss711/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployer.Deployer
Modified:
   container/jboss71/branches/jbossws-jboss711/pom.xml
   container/jboss71/branches/jbossws-jboss711/src/main/java/org/jboss/as/webservices/tests/RemoteDeployer.java
Log:
[JBWS-3483] Fixing/synching RemoteDeployer with version shipped in AS 7.1.0.Final + adding missing service declaration + adding transitive dependencies for jbossws testsuite


Modified: container/jboss71/branches/jbossws-jboss711/pom.xml
===================================================================
--- container/jboss71/branches/jbossws-jboss711/pom.xml	2012-04-06 15:53:37 UTC (rev 16119)
+++ container/jboss71/branches/jbossws-jboss711/pom.xml	2012-04-06 16:15:09 UTC (rev 16120)
@@ -26,8 +26,8 @@
   <!-- Properties -->
   <properties>
     <jbossws.api.version>1.0.0.GA</jbossws.api.version>
-    <jbossws.spi.version>2.0.4-SNAPSHOT</jbossws.spi.version>
-    <jbossws.common.version>2.0.3-SNAPSHOT</jbossws.common.version>
+    <jbossws.spi.version>2.1.0-SNAPSHOT</jbossws.spi.version>
+    <jbossws.common.version>2.1.0-SNAPSHOT</jbossws.common.version>
     <jboss.msc.version>1.0.2.GA</jboss.msc.version>
     <jboss.version>7.1.1.Final</jboss.version>
     <jboss.jaxws.api.version>2.0.0.Final</jboss.jaxws.api.version>
@@ -88,6 +88,24 @@
       <version>${jboss.jaxws.api.version}</version>
       <scope>provided</scope>
     </dependency>
+    
+    <!-- AS specific transitive dependencies for JBossWS testsuite execution -->
+    <dependency>
+      <groupId>org.jboss.as</groupId>
+      <artifactId>jboss-as-controller-client</artifactId>
+      <version>${jboss.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.as</groupId>
+      <artifactId>jboss-as-security</artifactId>
+      <version>${jboss.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.marshalling</groupId>
+      <artifactId>jboss-marshalling-river</artifactId>
+      <version>1.3.11.GA</version>
+    </dependency>
+    
   </dependencies>
   
   <!-- plugins -->

Modified: container/jboss71/branches/jbossws-jboss711/src/main/java/org/jboss/as/webservices/tests/RemoteDeployer.java
===================================================================
--- container/jboss71/branches/jbossws-jboss711/src/main/java/org/jboss/as/webservices/tests/RemoteDeployer.java	2012-04-06 15:53:37 UTC (rev 16119)
+++ container/jboss71/branches/jbossws-jboss711/src/main/java/org/jboss/as/webservices/tests/RemoteDeployer.java	2012-04-06 16:15:09 UTC (rev 16120)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2011, Red Hat, Inc., and individual contributors
+ * Copyright 2012, Red Hat, Inc., and individual contributors
  * as indicated by the @author tags. See the copyright.txt file in the
  * distribution for a full listing of individual contributors.
  *
@@ -19,7 +19,7 @@
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
-package org.jboss.as.webservices.deployer;
+package org.jboss.as.webservices.tests;
 
 import java.io.IOException;
 import java.net.InetAddress;

Added: container/jboss71/branches/jbossws-jboss711/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployer.Deployer
===================================================================
--- container/jboss71/branches/jbossws-jboss711/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployer.Deployer	                        (rev 0)
+++ container/jboss71/branches/jbossws-jboss711/src/main/resources/META-INF/services/org.jboss.wsf.spi.deployer.Deployer	2012-04-06 16:15:09 UTC (rev 16120)
@@ -0,0 +1 @@
+org.jboss.as.webservices.tests.RemoteDeployer



More information about the jbossws-commits mailing list