JBossWS SVN: r13864 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-03-08 11:12:56 -0500 (Tue, 08 Mar 2011)
New Revision: 13864
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
Updating excludes (including ejb3 endpoints causing binary distro failures)
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-03-08 16:11:25 UTC (rev 13863)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-03-08 16:12:56 UTC (rev 13864)
@@ -970,12 +970,14 @@
<exclude>org/jboss/test/ws/jaxws/samples/securityDomain/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/swaref/**</exclude>
<exclude>org/jboss/test/ws/jaxws/samples/webservice/**/*EJB3TestCase*</exclude>
+ <exclude>org/jboss/test/ws/jaxws/samples/webservice/**/EJB3Bean*</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>
<exclude>org/jboss/test/ws/jaxws/cxf/jaxbintros/**</exclude>
<exclude>org/jboss/test/ws/jaxws/cxf/jbws3060/*EJB3*</exclude>
<exclude>org/jboss/test/ws/jaxws/cxf/logging/**</exclude>
+ <exclude>org/jboss/test/ws/projectGenerator/**</exclude>
<!-- # [JBWS-3219] unexpected element 'security-domain' encountered -->
<exclude>org/jboss/test/ws/jaxws/jbws2307/**</exclude>
14 years, 8 months
JBossWS SVN: r13863 - common/trunk/src/main/java/org/jboss/wsf/common.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-03-08 11:11:25 -0500 (Tue, 08 Mar 2011)
New Revision: 13863
Modified:
common/trunk/src/main/java/org/jboss/wsf/common/DOMUtils.java
Log:
Avoid throwing exception due to logging being set to debug level when JBossWSEntityFactory can't be loaded
Modified: common/trunk/src/main/java/org/jboss/wsf/common/DOMUtils.java
===================================================================
--- common/trunk/src/main/java/org/jboss/wsf/common/DOMUtils.java 2011-03-08 15:27:29 UTC (rev 13862)
+++ common/trunk/src/main/java/org/jboss/wsf/common/DOMUtils.java 2011-03-08 16:11:25 UTC (rev 13863)
@@ -146,7 +146,7 @@
{
boolean debugEnabled = log.isDebugEnabled();
if (debugEnabled)
- log.debug("Cannot load: " + JBossWSEntityResolver.class.getCanonicalName());
+ log.debug("Cannot load JBossWSEntityResolver");
String[] resolvers = new String[] { "org.jboss.util.xml.JBossEntityResolver" };
ClassLoader loader = SecurityActions.getContextClassLoader();
for (String resolver : resolvers)
14 years, 8 months
JBossWS SVN: r13862 - stack/native/branches/ropalka/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-08 10:27:29 -0500 (Tue, 08 Mar 2011)
New Revision: 13862
Modified:
stack/native/branches/ropalka/modules/testsuite/pom.xml
Log:
[JBWS-3239][JBWS-3240][JBWS-3241][JBWS-3242] updating excludes
Modified: stack/native/branches/ropalka/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/ropalka/modules/testsuite/pom.xml 2011-03-08 14:20:55 UTC (rev 13861)
+++ stack/native/branches/ropalka/modules/testsuite/pom.xml 2011-03-08 15:27:29 UTC (rev 13862)
@@ -745,6 +745,7 @@
<!--# not yet supported on AS7 -->
<exclude>org/jboss/test/ws/benchmark/jaxrpc/**</exclude>
<exclude>org/jboss/test/ws/jaxrpc/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/wsrm/**</exclude>
<exclude>org/jboss/test/ws/jaxws/wseventing/**</exclude>
<!-- EJB3 client API dependencies -->
<exclude>org/jboss/test/ws/jaxws/jbws944/**</exclude>
@@ -817,6 +818,7 @@
<exclude>org/jboss/test/ws/jaxws/jbws2529/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2591/**</exclude>
<exclude>org/jboss/test/ws/jaxws/jbws2593/**</exclude>
+ <exclude>org/jboss/test/ws/tools/scripts/ScriptTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/smoke/tools/*ScriptTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/smoke/tools/WSRunClientTestCase*</exclude>
@@ -836,18 +838,25 @@
<!-- # [JBWS-3229] DOMUtils issue on test classpath - probably missing xercesImpl on CP? -->
<exclude>org/jboss/test/ws/jaxws/jbws2960/**</exclude>
- <!-- # [JBWS-3230] WS RM namespace issue -->
- <exclude>org/jboss/test/ws/jaxws/samples/wsrm/client/WSReliableMessagingWithAPITestCase*</exclude>
-
- <!-- # [JBWS-3231] not satisfied policy alternatives -->
- <exclude>org/jboss/test/ws/jaxws/samples/mtom/MtomTestCase*</exclude>
-
<!-- # [JBWS-3232] javax.naming.NameNotFoundException: Name 'service' not found in context 'env' -->
<exclude>org/jboss/test/ws/jaxws/jbws3140/**</exclude>
<!-- # [JBWS-3234] JNDI over RMI not available on AS7 -->
<exclude>org/jboss/test/ws/jaxws/samples/serviceref/**</exclude>
+ <!-- # [JBWS-3239] SPI TCCL issue -->
+ <exclude>org/jboss/test/ws/jaxws/endpoint/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/samples/endpoint/**</exclude>
+
+ <!-- # [JBWS-3240] Rewrite tests relying on $JBOSS_HOME/server/default/tmp/jbossws folder existence -->
+ <exclude>org/jboss/test/ws/jaxws/samples/xop/doclit/**</exclude>
+
+ <!-- # [JBWS-3241] NPE in ServerHandler.handleInbound() -->
+ <exclude>org/jboss/test/ws/jaxws/samples/addressing/AddressingStatefulTestCase*</exclude>
+
+ <!-- # [JBWS-3242] Servlet base test throws IllegalArgumentException: Resource META-INF/jbossws-entities.properties not found -->
+ <exclude>org/jboss/test/ws/jaxws/jbws3223/**</exclude>
+
<!-- JAXR not available -->
<exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
14 years, 8 months
JBossWS SVN: r13861 - in stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss: ws/native/jbossws-native-core/main and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-08 09:20:55 -0500 (Tue, 08 Mar 2011)
New Revision: 13861
Modified:
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml
Log:
[JBWS-3206] another classpath definition fixes
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-03-08 12:49:20 UTC (rev 13860)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-03-08 14:20:55 UTC (rev 13861)
@@ -52,8 +52,8 @@
<module name="org.jboss.ws.common" />
<module name="org.jboss.ws.native.jbossws-native-factories" services="import"/>
<module name="org.jboss.ws.native.jbossws-native-services" services="import"/>
+ <module name="org.jboss.ws.native.jbossws-native-core" services="import">
<module name="org.jboss.ws.jaxws-client" services="import"/>
- <module name="org.jboss.ws.native.jbossws-native-core" services="import">
<imports>
<include path="META-INF"/>
</imports>
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml 2011-03-08 12:49:20 UTC (rev 13860)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml 2011-03-08 14:20:55 UTC (rev 13861)
@@ -38,15 +38,18 @@
<module name="javax.xml.stream.api" />
<module name="javax.xml.rpc.api" />
<module name="javax.xml.ws.api" />
+ <module name="org.picketbox"/>
<module name="org.apache.xerces" services="import"/>
<module name="org.apache.ws.commons.policy"/>
<module name="org.javassist" />
+ <module name="org.jboss.netty" />
<module name="org.jboss.xb" />
<module name="org.jboss.ws.api" />
<module name="org.jboss.ws.spi" />
<module name="org.jboss.ws.common" />
<module name="org.jboss.ws.jaxws-client" />
<module name="org.jboss.ws.native.jbossws-native-factories" services="import"/>
+ <module name="org.jboss.ws.native.jbossws-native-services" services="import"/>
<module name="org.jboss.common-core" />
<module name="org.jboss.logging" />
<module name="wsdl4j.wsdl4j" />
14 years, 8 months
JBossWS SVN: r13860 - stack/native/branches/ropalka/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-08 07:49:20 -0500 (Tue, 08 Mar 2011)
New Revision: 13860
Modified:
stack/native/branches/ropalka/modules/testsuite/pom.xml
Log:
[JBWS-3206] fixing endorsement issue
Modified: stack/native/branches/ropalka/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/ropalka/modules/testsuite/pom.xml 2011-03-08 11:48:51 UTC (rev 13859)
+++ stack/native/branches/ropalka/modules/testsuite/pom.xml 2011-03-08 12:49:20 UTC (rev 13860)
@@ -183,15 +183,20 @@
</goals>
<configuration>
<outputDirectory>${project.build.directory}/endorsed</outputDirectory>
- <resources>
+ <resources>
<resource>
<directory>${basedir}/../endorsed/target/</directory>
<includes>
<include>jbossws-native-factories-${project.version}.jar</include>
- <include>jboss-jaxb-api_2.2_spec-${jaxb.api.version}.jar</include>
</includes>
</resource>
- </resources>
+ <resource>
+ <directory>${basedir}/../../endorsed/target/</directory>
+ <includes>
+ <include>jbossws-native-factories-${project.version}.jar</include>
+ </includes>
+ </resource>
+ </resources>
</configuration>
</execution>
</executions>
@@ -504,13 +509,13 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <compilerArgument>-Djava.endorsed.dirs=${jboss600.home}/lib/endorsed</compilerArgument>
+ <compilerArgument>-Djava.endorsed.dirs=${endorsed.dirs}</compilerArgument>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${jboss600.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${endorsed.dirs}</argLine>
<excludes>
<!--# UsernameTokenHTTPSTestCase requires keystore & trustore in jboss-web tomcat configuration-->
<exclude>org/jboss/test/ws/interop/nov2007/wsse/UsernameTokenHTTPSTestCase.*</exclude>
@@ -623,13 +628,13 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <compilerArgument>-Djava.endorsed.dirs=${jboss601.home}/lib/endorsed</compilerArgument>
+ <compilerArgument>-Djava.endorsed.dirs=${endorsed.dirs}</compilerArgument>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${jboss601.home}/lib/endorsed</argLine>
+ <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${endorsed.dirs}</argLine>
<excludes>
<!--# UsernameTokenHTTPSTestCase requires keystore & trustore in jboss-web tomcat configuration-->
<exclude>org/jboss/test/ws/interop/nov2007/wsse/UsernameTokenHTTPSTestCase.*</exclude>
@@ -690,9 +695,7 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <compilerArguments>
- <endorseddirs>${project.build.directory}/endorsed</endorseddirs>
- </compilerArguments>
+ <compilerArgument>-Djava.endorsed.dirs=${endorsed.dirs}</compilerArgument>
</configuration>
<executions>
<execution>
@@ -721,7 +724,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${project.build.directory}/endorsed</argLine>
+ <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${endorsed.dirs}</argLine>
<excludes>
<!--# UsernameTokenHTTPSTestCase requires keystore & trustore in jboss-web tomcat configuration-->
<exclude>org/jboss/test/ws/interop/nov2007/wsse/UsernameTokenHTTPSTestCase.*</exclude>
14 years, 8 months
JBossWS SVN: r13859 - in stack/native/branches/ropalka/modules: resources/src/main/resources/modules/org and 11 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-08 06:48:51 -0500 (Tue, 08 Mar 2011)
New Revision: 13859
Added:
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/policy/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/policy/main/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/policy/main/module.xml
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/xb/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/xb/main/
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/xb/main/module.xml
Modified:
stack/native/branches/ropalka/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml
stack/native/branches/ropalka/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
Log:
[JBWS-3206] another classpath definition fixes
Modified: stack/native/branches/ropalka/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/native/branches/ropalka/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml 2011-03-08 09:18:16 UTC (rev 13858)
+++ stack/native/branches/ropalka/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml 2011-03-08 11:48:51 UTC (rev 13859)
@@ -90,6 +90,7 @@
<include>apache-scout:scout:jar</include>
<include>juddi:juddi:jar</include>
<include>org.jboss.ws:jbossws-jboss600:jar</include>
+ <include>org.jboss:jbossxb:jar</include>
</includes>
<outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping>
<scope>provided</scope>
Added: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/policy/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/policy/main/module.xml (rev 0)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/apache/ws/commons/policy/main/module.xml 2011-03-08 11:48:51 UTC (rev 13859)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, 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.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.apache.ws.commons.policy">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="org.slf4j.jcl-over-slf4j"/>
+ </dependencies>
+
+</module>
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-03-08 09:18:16 UTC (rev 13858)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-03-08 11:48:51 UTC (rev 13859)
@@ -29,6 +29,8 @@
</resources>
<dependencies>
+ <module name="com.sun.xml.bind" services="import"/> <!-- TODO: JAXB API relies on TCCL - investigate how to workaround this factories import -->
+ <module name="org.apache.xerces" services="import"/> <!-- TODO: DOM API relies on TCCL - investigate how to workaround this factories import -->
<module name="javax.api"/>
<module name="javax.jws.api"/>
<module name="javax.xml.ws.api"/>
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml 2011-03-08 09:18:16 UTC (rev 13858)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml 2011-03-08 11:48:51 UTC (rev 13859)
@@ -38,8 +38,10 @@
<module name="javax.xml.stream.api" />
<module name="javax.xml.rpc.api" />
<module name="javax.xml.ws.api" />
- <module name="org.apache.xerces" />
+ <module name="org.apache.xerces" services="import"/>
+ <module name="org.apache.ws.commons.policy"/>
<module name="org.javassist" />
+ <module name="org.jboss.xb" />
<module name="org.jboss.ws.api" />
<module name="org.jboss.ws.spi" />
<module name="org.jboss.ws.common" />
Added: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/xb/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/xb/main/module.xml (rev 0)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/xb/main/module.xml 2011-03-08 11:48:51 UTC (rev 13859)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, 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.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.xb">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.common-core"/>
+ </dependencies>
+</module>
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2011-03-08 09:18:16 UTC (rev 13858)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml 2011-03-08 11:48:51 UTC (rev 13859)
@@ -314,6 +314,16 @@
<include name="**/jaxrpc-api.jar"/>
</fileset>
</copy>
+ <copy todir="@{targetdir}/org/jboss/xb/main" flatten="false" overwrite="true">
+ <fileset dir="@{thirdpartydir}/lib">
+ <include name="**/jbossxb.jar"/>
+ </fileset>
+ </copy>
+ <copy todir="@{targetdir}/org/apache/ws/commons/policy/main" flatten="false" overwrite="true">
+ <fileset dir="@{thirdpartydir}/lib">
+ <include name="**/wscommons-policy.jar"/>
+ </fileset>
+ </copy>
<copy todir="@{targetdir}/org/jboss/ws/common/main" flatten="false" overwrite="true">
<fileset dir="@{thirdpartydir}/lib">
<include name="**/jbossws-common.jar"/>
14 years, 8 months
JBossWS SVN: r13858 - shared-testsuite/trunk/src/test/ant-import.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-03-08 04:18:16 -0500 (Tue, 08 Mar 2011)
New Revision: 13858
Modified:
shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml
Log:
[JBWS-3238] improving wildcard
Modified: shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml
===================================================================
--- shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml 2011-03-07 15:08:57 UTC (rev 13857)
+++ shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml 2011-03-08 09:18:16 UTC (rev 13858)
@@ -435,7 +435,7 @@
<!-- Run all unit tests and generate a report -->
<target name="tests" depends="tests-jars" description="Run all unit tests and generate a report">
<antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/**/*TestCase*.class"/>
+ <param name="include.wildcard" value="org/jboss/test/ws/**/*TestCase.class org/jboss/test/ws/**/*TestCaseForked.class"/>
<param name="exclude.wildcard" value="no-wildcard-exclude-see-excludesfile"/>
<param name="haltonfailure" value="false"/>
</antcall>
@@ -445,7 +445,7 @@
<!-- Run smoke test cases -->
<target name="tests-smoke" depends="tests-init" description="Run smoke unit tests">
<antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class org/jboss/test/ws/*/smoke/**/*TestCase.class"/>
+ <param name="include.wildcard" value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class org/jboss/test/ws/*/smoke/**/*TestCase.class org/jboss/test/ws/*/smoke/**/*TestCaseForked.class"/>
<param name="exclude.wildcard" value="org/jboss/test/ws/*/samples/jaxr/**"/>
<!--
According to our commit policy, haltonfailure MUST be be true for tests-smoke
14 years, 8 months
JBossWS SVN: r13857 - in stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss: ws/native/jbossws-native-core/main and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-03-07 10:08:57 -0500 (Mon, 07 Mar 2011)
New Revision: 13857
Modified:
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml
Log:
[JBWS-3206] JBoss MSC accepts only directories in filters
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-03-07 10:58:23 UTC (rev 13856)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2011-03-07 15:08:57 UTC (rev 13857)
@@ -51,7 +51,11 @@
<module name="org.jboss.ws.native.jbossws-native-factories" services="import"/>
<module name="org.jboss.ws.native.jbossws-native-services" services="import"/>
<module name="org.jboss.ws.jaxws-client" services="import"/>
- <module name="org.jboss.ws.native.jbossws-native-core" services="import"/>
+ <module name="org.jboss.ws.native.jbossws-native-core" services="import">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ </module>
<module name="org.jboss.ws.spi" />
</dependencies>
</module>
Modified: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml 2011-03-07 10:58:23 UTC (rev 13856)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml 2011-03-07 15:08:57 UTC (rev 13857)
@@ -29,6 +29,7 @@
</resources>
<dependencies>
+ <module name="com.sun.xml.bind" services="import"/>
<module name="javax.api" />
<module name="javax.servlet.api" />
<module name="javax.jws.api" />
@@ -44,12 +45,6 @@
<module name="org.jboss.ws.common" />
<module name="org.jboss.ws.jaxws-client" />
<module name="org.jboss.ws.native.jbossws-native-factories" services="import"/>
- <module name="org.jboss.ws.native.jbossws-native-core" services="import">
- <imports>
- <include path="META-INF/jbossws-entities.properties"/>
- <include path="META-INF/standard-*-config.xml"/>
- </imports>
- </module>
<module name="org.jboss.common-core" />
<module name="org.jboss.logging" />
<module name="wsdl4j.wsdl4j" />
14 years, 8 months
JBossWS SVN: r13856 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-03-07 05:58:23 -0500 (Mon, 07 Mar 2011)
New Revision: 13856
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3205] excluding test
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2011-03-04 22:05:04 UTC (rev 13855)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2011-03-07 10:58:23 UTC (rev 13856)
@@ -662,6 +662,9 @@
<!--# Seems MSFT interop. endpoints are down :(-->
<exclude>org/jboss/test/ws/jaxws/cxf/interop/wstrust10/**</exclude>
+
+ <!-- # [JBWS-3205] JDKLogManager not used -->
+ <exclude>org/jboss/test/ws/jaxws/cxf/logging/JDKLoggingTestCase*</exclude>
</excludes>
</configuration>
</plugin>
@@ -798,6 +801,9 @@
<!--# Seems MSFT interop. endpoints are down :(-->
<exclude>org/jboss/test/ws/jaxws/cxf/interop/wstrust10/**</exclude>
+
+ <!-- # [JBWS-3205] JDKLogManager not used -->
+ <exclude>org/jboss/test/ws/jaxws/cxf/logging/JDKLoggingTestCase*</exclude>
</excludes>
</configuration>
</plugin>
@@ -984,6 +990,9 @@
<exclude>org/jboss/test/ws/jaxws/smoke/tools/*ScriptTestCase*</exclude>
<exclude>org/jboss/test/ws/jaxws/smoke/tools/WSRunClientTestCase*</exclude>
+ <!-- # [JBWS-3205] JDKLogManager not used -->
+ <exclude>org/jboss/test/ws/jaxws/cxf/logging/JDKLoggingTestCase*</exclude>
+
<!-- # [JBWS-3225] jbossws console not yet available -->
<exclude>org/jboss/test/ws/console/**</exclude>
14 years, 8 months
JBossWS SVN: r13855 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-03-04 17:05:04 -0500 (Fri, 04 Mar 2011)
New Revision: 13855
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3238] Updating widlcard
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2011-03-04 22:04:23 UTC (rev 13854)
+++ stack/native/trunk/modules/testsuite/pom.xml 2011-03-04 22:05:04 UTC (rev 13855)
@@ -198,6 +198,7 @@
<includes>
<include>**/*Test.java</include>
<include>**/*TestCase.java</include>
+ <include>**/*TestCaseForked.java</include>
</includes>
<systemProperties>
<property>
14 years, 8 months