JBossWS SVN: r14629 - in stack/cxf/trunk/modules: testsuite and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-06-27 05:42:46 -0400 (Mon, 27 Jun 2011)
New Revision: 14629
Modified:
stack/cxf/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
adding EJB3 annotations dependency
Modified: stack/cxf/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/cxf/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-06-27 09:30:53 UTC (rev 14628)
+++ stack/cxf/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-06-27 09:42:46 UTC (rev 14629)
@@ -29,9 +29,11 @@
</resources>
<dependencies>
+ <module name="javax.annotation.api"/>
<module name="javax.api"/>
<module name="javax.jws.api"/>
<module name="javax.xml.ws.api"/>
+ <module name="org.jboss.ejb3"/>
<module name="org.jboss.invocation"/>
<module name="org.jboss.jandex"/>
<module name="org.jboss.metadata"/>
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-27 09:30:53 UTC (rev 14628)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-27 09:42:46 UTC (rev 14629)
@@ -920,6 +920,11 @@
<version>5.0.5.Final</version>
</dependency>
<dependency>
+ <groupId>org.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-ext-api</artifactId>
+ <version>2.0.0-beta-1</version>
+ </dependency>
+ <dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<exclusions>
@@ -950,10 +955,6 @@
<!-- EJB3 client API dependencies -->
<exclude>org/jboss/test/ws/jaxws/jbws944/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/webserviceref/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/webservicerefsec/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/securityDomain/**</exclude>
- <!-- @SecurityDomain missing -->
- <exclude>org/jboss/test/ws/jaxws/samples/wsseEJB/EjbEndpointImpl*</exclude>
</testExcludes>
</configuration>
<goals>
13 years, 5 months
JBossWS SVN: r14628 - in stack/native/trunk/modules: testsuite and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-06-27 05:30:53 -0400 (Mon, 27 Jun 2011)
New Revision: 14628
Modified:
stack/native/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
stack/native/trunk/modules/testsuite/pom.xml
Log:
adding EJB3 annotations dependency
Modified: stack/native/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/native/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-06-27 09:19:33 UTC (rev 14627)
+++ stack/native/trunk/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-06-27 09:30:53 UTC (rev 14628)
@@ -29,9 +29,11 @@
</resources>
<dependencies>
+ <module name="javax.annotation.api"/>
<module name="javax.api"/>
<module name="javax.jws.api"/>
<module name="javax.xml.ws.api"/>
+ <module name="org.jboss.ejb3"/>
<module name="org.jboss.invocation"/>
<module name="org.jboss.jandex"/>
<module name="org.jboss.metadata"/>
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-06-27 09:19:33 UTC (rev 14627)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-06-27 09:30:53 UTC (rev 14628)
@@ -715,6 +715,12 @@
<groupId>org.jboss</groupId>
<artifactId>jbossxb</artifactId>
</dependency>
+ <!-- provides org.jboss.ejb3.annotation.SecurityDomain annotation -->
+ <dependency>
+ <groupId>org.jboss.ejb3</groupId>
+ <artifactId>jboss-ejb3-ext-api</artifactId>
+ <version>2.0.0-beta-1</version>
+ </dependency>
<!-- Apache XML security depends on Xalan impl classes :( -->
<dependency>
<groupId>apache-xalan</groupId>
@@ -743,11 +749,6 @@
<!-- TODO: tests using org.jboss.ejb3.client.ClientLauncher -->
<exclude>org/jboss/test/ws/jaxws/webserviceref/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/webserviceref/**</exclude>
-
- <!-- TODO: tests using org.jboss.ejb3.annotation.SecurityDomain -->
- <exclude>org/jboss/test/ws/jaxws/samples/news/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/webservicerefsec/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/securityDomain/**</exclude>
</testExcludes>
</configuration>
<goals>
13 years, 5 months
JBossWS SVN: r14627 - hudson/trunk/scripts.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-06-27 05:19:33 -0400 (Mon, 27 Jun 2011)
New Revision: 14627
Modified:
hudson/trunk/scripts/jboss.sh
Log:
fixing AS7 startup script - use standalone-preview.xml config file
Modified: hudson/trunk/scripts/jboss.sh
===================================================================
--- hudson/trunk/scripts/jboss.sh 2011-06-24 08:16:30 UTC (rev 14626)
+++ hudson/trunk/scripts/jboss.sh 2011-06-27 09:19:33 UTC (rev 14627)
@@ -12,7 +12,7 @@
if [ -f "$JBOSS_HOME/bin/run.sh" ]; then
RUN_CMD="$DIRNAME/runjboss.sh -b $BINDADDR"
else
- RUN_CMD="$JBOSS_HOME/bin/standalone.sh"
+ RUN_CMD="$JBOSS_HOME/bin/standalone.sh -server-config standalone-preview.xml"
export LAUNCH_JBOSS_IN_BACKGROUND="true"
export JBOSS_PIDFILE=$PIDFILE
fi
13 years, 5 months
JBossWS SVN: r14626 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-06-24 04:16:30 -0400 (Fri, 24 Jun 2011)
New Revision: 14626
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
update excludes - only 1 of 3 tests is failing in this directory
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-06-24 07:59:09 UTC (rev 14625)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-06-24 08:16:30 UTC (rev 14626)
@@ -834,7 +834,7 @@
<!-- TODO: implement EJB security integration -->
<exclude>org/jboss/test/ws/jaxws/jbws1991/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws1988/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase*</exclude>
<!-- TODO: tests using org.jboss.ejb3.annotation.SecurityDomain -->
13 years, 5 months
JBossWS SVN: r14625 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-06-24 03:59:09 -0400 (Fri, 24 Jun 2011)
New Revision: 14625
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
[AS7-1093] enabling passing test
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-06-24 07:36:27 UTC (rev 14624)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-06-24 07:59:09 UTC (rev 14625)
@@ -821,9 +821,6 @@
<exclude>org/jboss/test/ws/jaxws/samples/serviceref/**</exclude>
<exclude>org/jboss/test/ws/jaxws/wsaddressing/replyto/**</exclude>
- <!-- [AS7-1093] failing deployments succesfully deployed -->
- <exclude>org/jboss/test/ws/jaxws/jbws1582/JBWS1582TestCase*</exclude>
-
<!-- JAXR not available -->
<exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
13 years, 5 months
JBossWS SVN: r14624 - in stack/cxf/trunk/modules/testsuite: cxf-tests/scripts and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-06-24 03:36:27 -0400 (Fri, 24 Jun 2011)
New Revision: 14624
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-jars-jaxws.xml
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
Fixing a test dependency issue
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-jars-jaxws.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-jars-jaxws.xml 2011-06-24 07:35:19 UTC (rev 14623)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/scripts/cxf-jars-jaxws.xml 2011-06-24 07:36:27 UTC (rev 14624)
@@ -172,6 +172,9 @@
<include name="org/jboss/test/ws/jaxws/cxf/logging/LoggingInterceptorsEndpointImpl.class"/>
<include name="org/jboss/test/ws/jaxws/cxf/logging/CustomInInterceptor.class"/>
</fileset>
+ <manifest>
+ <attribute name="Dependencies" value="org.apache.cxf"/>
+ </manifest>
</jar>
<!-- jaxws-cxf-management -->
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-24 07:35:19 UTC (rev 14623)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-24 07:36:27 UTC (rev 14624)
@@ -1033,7 +1033,6 @@
<exclude>org/jboss/test/ws/jaxws/samples/webserviceref/**/*EJB3TestCase*</exclude>
<exclude>org/jboss/test/ws/management/recording/**</exclude>
<exclude>org/jboss/test/ws/jaxws/cxf/bus/*EJB3*</exclude>
- <exclude>org/jboss/test/ws/jaxws/cxf/logging/**</exclude>
<exclude>org/jboss/test/ws/projectGenerator/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/wsseEJB/WsseEjbTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/wsse/policy/jaas/UsernameAuthorizationEJBTestCase*</exclude>
13 years, 5 months
JBossWS SVN: r14623 - stack/native/branches/jbossws-native-2.0.1.SP2_CP.
by jbossws-commits@lists.jboss.org
Author: rsvoboda(a)redhat.com
Date: 2011-06-24 03:35:19 -0400 (Fri, 24 Jun 2011)
New Revision: 14623
Modified:
stack/native/branches/jbossws-native-2.0.1.SP2_CP/version.properties
Log:
JBPAPP-6559 upgraging jbossws-spi version to 1.0.0.GA_CP03-brew
Modified: stack/native/branches/jbossws-native-2.0.1.SP2_CP/version.properties
===================================================================
--- stack/native/branches/jbossws-native-2.0.1.SP2_CP/version.properties 2011-06-24 07:30:10 UTC (rev 14622)
+++ stack/native/branches/jbossws-native-2.0.1.SP2_CP/version.properties 2011-06-24 07:35:19 UTC (rev 14623)
@@ -25,7 +25,7 @@
wscommons-policy=1.0
# Dependend integration projects
-jbossws-spi=1.0.0.GA_CP02-brew
+jbossws-spi=1.0.0.GA_CP03-brew
jbossws-common=1.0.0.GA_CP06-brew
jbossws-framework=2.0.1.GA_CP05-brew
jbossws-jboss40=2.0.1.GA
13 years, 5 months
JBossWS SVN: r14622 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-06-24 03:30:10 -0400 (Fri, 24 Jun 2011)
New Revision: 14622
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
Updating excludes
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-24 06:35:35 UTC (rev 14621)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-24 07:30:10 UTC (rev 14622)
@@ -1017,27 +1017,19 @@
<exclude>org/jboss/test/ws/jaxws/samples/webservicerefsec/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/securityDomain/**</exclude>
- <!-- EJB3 endpoint deployments -->
- <exclude>org/jboss/test/ws/jaxws/jbws1283/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws1446/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws1566/**</exclude>
+ <!-- TODO: Unexpected element 'class-loading' encountered -->
<exclude>org/jboss/test/ws/jaxws/jbws1581/**</exclude>
+
+ <!-- EJB3 endpoint deployments -->
<exclude>org/jboss/test/ws/jaxws/jbws1813/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws1815/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws1841/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws1872/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2074/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws2218/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2241/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws2257/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2630/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2634/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws2934/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws2957/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws2999/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws3026/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/context/WebServiceContextEJBTestCase*</exclude>
- <exclude>org/jboss/test/ws/jaxws/samples/advanced/retail/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/webserviceref/**/*EJB3TestCase*</exclude>
<exclude>org/jboss/test/ws/management/recording/**</exclude>
<exclude>org/jboss/test/ws/jaxws/cxf/bus/*EJB3*</exclude>
@@ -1067,11 +1059,16 @@
<!-- JAXR not available -->
<exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
- <!-- @WebServiceRef not implemented yet on AS7 -->
+ <!-- @WebServiceRef / webserviceref not implemented / ready yet on AS7 -->
<exclude>org/jboss/test/ws/jaxws/cxf/webserviceref/WebServiceRefServletTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2307/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2527/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/samples/advanced/retail/**</exclude>
+ <!-- [AS7-1101][JBWS-3322] -->
+ <exclude>org/jboss/test/ws/jaxws/jbws2957/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/jbws2999/**</exclude>
+
<!-- JMS endpoint functionalities to be restored on AS7 -->
<exclude>org/jboss/test/ws/jaxws/samples/**/jmstransport/**</exclude>
13 years, 5 months
JBossWS SVN: r14621 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-06-24 02:35:35 -0400 (Fri, 24 Jun 2011)
New Revision: 14621
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3219] Updating exclude description
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-06-24 06:34:19 UTC (rev 14620)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-06-24 06:35:35 UTC (rev 14621)
@@ -807,7 +807,7 @@
<exclude>org/jboss/test/ws/jaxws/samples/advanced/retail/**</exclude>
<exclude>org/jboss/test/ws/management/recording/**</exclude>
- <!-- # [JBWS-3219] unexpected element 'port-qname' encountered - we're waiting for jboss-metadata-common-7.0.0.Beta5 release in AS7 trunk -->
+ <!-- # Fix webserviceref stuff -->
<exclude>org/jboss/test/ws/jaxws/jbws2307/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2527/**</exclude>
13 years, 5 months
JBossWS SVN: r14620 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-06-24 02:34:19 -0400 (Fri, 24 Jun 2011)
New Revision: 14620
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3219] Updating excludes
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-24 06:29:35 UTC (rev 14619)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-06-24 06:34:19 UTC (rev 14620)
@@ -1046,10 +1046,6 @@
<exclude>org/jboss/test/ws/jaxws/samples/wsseEJB/WsseEjbTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/wsse/policy/jaas/UsernameAuthorizationEJBTestCase*</exclude>
- <!-- # [JBWS-3219] unexpected element 'port-qname' encountered -->
- <exclude>org/jboss/test/ws/jaxws/jbws2307/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/jbws2527/**</exclude>
-
<!-- # [JBWS-3205] JDKLogManager not used -->
<exclude>org/jboss/test/ws/jaxws/cxf/logging/JDKLoggingTestCase*</exclude>
@@ -1073,6 +1069,8 @@
<!-- @WebServiceRef not implemented yet on AS7 -->
<exclude>org/jboss/test/ws/jaxws/cxf/webserviceref/WebServiceRefServletTestCase*</exclude>
+ <exclude>org/jboss/test/ws/jaxws/jbws2307/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/jbws2527/**</exclude>
<!-- JMS endpoint functionalities to be restored on AS7 -->
<exclude>org/jboss/test/ws/jaxws/samples/**/jmstransport/**</exclude>
13 years, 5 months