[jbossws-commits] JBossWS SVN: r13851 - in stack/native/branches/ropalka/modules: resources/src/main/resources/modules/javax and 7 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Mar 4 10:43:00 EST 2011


Author: richard.opalka at jboss.com
Date: 2011-03-04 10:42:59 -0500 (Fri, 04 Mar 2011)
New Revision: 13851

Added:
   stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/
   stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/
   stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/
   stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/api/
   stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/api/main/
   stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/api/main/module.xml
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/resources/jbossws-deploy-macros.xml
   stack/native/branches/ropalka/modules/testsuite/pom.xml
Log:
[JBWS-3206] server side classpath fixes (WIP)

Added: stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/api/main/module.xml
===================================================================
--- stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/api/main/module.xml	                        (rev 0)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/javax/xml/rpc/api/main/module.xml	2011-03-04 15:42:59 UTC (rev 13851)
@@ -0,0 +1,31 @@
+<?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="javax.xml.rpc.api">
+
+    <resources>
+        <!-- Insert resources here -->
+    </resources>
+
+</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-04 13:42:36 UTC (rev 13850)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/modules/org/jboss/ws/native/jbossws-native-core/main/module.xml	2011-03-04 15:42:59 UTC (rev 13851)
@@ -32,9 +32,13 @@
         <module name="javax.api" />
         <module name="javax.servlet.api" />
         <module name="javax.jws.api" />
+        <module name="javax.mail.api" />
         <module name="javax.xml.bind.api" />
         <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.javassist" />
         <module name="org.jboss.ws.api" />
         <module name="org.jboss.ws.spi" />
         <module name="org.jboss.ws.common" />

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-04 13:42:36 UTC (rev 13850)
+++ stack/native/branches/ropalka/modules/resources/src/main/resources/resources/jbossws-deploy-macros.xml	2011-03-04 15:42:59 UTC (rev 13851)
@@ -309,6 +309,11 @@
           <include name="**/jbossws-api.jar"/>
         </fileset>
       </copy>
+      <copy todir="@{targetdir}/javax/xml/rpc/api/main" flatten="false" overwrite="true">
+        <fileset dir="@{thirdpartydir}/lib">
+          <include name="**/jaxrpc-api.jar"/>
+        </fileset>
+      </copy>
       <copy todir="@{targetdir}/org/jboss/ws/common/main" flatten="false" overwrite="true">
         <fileset dir="@{thirdpartydir}/lib">
           <include name="**/jbossws-common.jar"/>

Modified: stack/native/branches/ropalka/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/ropalka/modules/testsuite/pom.xml	2011-03-04 13:42:36 UTC (rev 13850)
+++ stack/native/branches/ropalka/modules/testsuite/pom.xml	2011-03-04 15:42:59 UTC (rev 13851)
@@ -740,6 +740,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/wseventing/**</exclude>
                  <!-- EJB3 client API dependencies -->



More information about the jbossws-commits mailing list