[jbossws-commits] JBossWS SVN: r2345 - in branches/jbossws-1.2.0: jbossws-tests and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Tue Feb 13 05:06:15 EST 2007


Author: thomas.diesler at jboss.com
Date: 2007-02-13 05:06:14 -0500 (Tue, 13 Feb 2007)
New Revision: 2345

Modified:
   branches/jbossws-1.2.0/jbossws-core/src/main/resources/samples/build.xml
   branches/jbossws-1.2.0/jbossws-tests/build.xml
Log:
exclude wsconsume,wsprovide when jdk14 

Modified: branches/jbossws-1.2.0/jbossws-core/src/main/resources/samples/build.xml
===================================================================
--- branches/jbossws-1.2.0/jbossws-core/src/main/resources/samples/build.xml	2007-02-13 09:48:06 UTC (rev 2344)
+++ branches/jbossws-1.2.0/jbossws-core/src/main/resources/samples/build.xml	2007-02-13 10:06:14 UTC (rev 2345)
@@ -324,7 +324,7 @@
   <!--
     Generate JAX-WS sources
   -->
-  <target name="wsprovide" depends="compile" description="Provide the JAX-WS contracts.">
+  <target name="wsprovide" depends="compile" description="Provide the JAX-WS contracts." if="HAVE_JDK_1.5">
 	
     <!-- Define the JAX-WS wsprovide task -->
     <taskdef name="wsprovide" classname="org.jboss.ws.tools.jaxws.ant.wsprovide">
@@ -357,6 +357,7 @@
       failonerror="${javac.fail.onerror}" excludesfile="${excludesfile}">
       <src path="${tests.java.dir}"/>
       <exclude name="org/jboss/test/ws/jaxws/**"/>
+      <exclude name="org/jboss/test/ws/tools/jaxws/**"/>
       <exclude name="org/jboss/test/ws/tools/jsr181/**"/>
       <classpath refid="javac.classpath"/>
     </javac>

Modified: branches/jbossws-1.2.0/jbossws-tests/build.xml
===================================================================
--- branches/jbossws-1.2.0/jbossws-tests/build.xml	2007-02-13 09:48:06 UTC (rev 2344)
+++ branches/jbossws-1.2.0/jbossws-tests/build.xml	2007-02-13 10:06:14 UTC (rev 2345)
@@ -334,7 +334,7 @@
   <!--
     Generate JAX-WS sources
   -->
-  <target name="wsprovide" depends="compile" description="Provide the JAX-WS contracts.">
+  <target name="wsprovide" depends="compile" description="Provide the JAX-WS contracts." if="HAVE_JDK_1.5">
 	
     <!-- Define the JAX-WS wsprovide task -->
     <taskdef name="wsprovide" classname="org.jboss.ws.tools.jaxws.ant.wsprovide">
@@ -367,6 +367,7 @@
       failonerror="${javac.fail.onerror}" excludesfile="${excludesfile}">
       <src path="${tests.java.dir}"/>
       <exclude name="org/jboss/test/ws/jaxws/**"/>
+      <exclude name="org/jboss/test/ws/tools/jaxws/**"/>
       <exclude name="org/jboss/test/ws/tools/jsr181/**"/>
       <classpath refid="javac.classpath"/>
     </javac>




More information about the jbossws-commits mailing list