|
From: Thomas D. <tdi...@us...> - 2004-05-06 18:49:17
|
User: tdiesler
Date: 04/05/06 11:49:05
Modified: . build.xml
Log:
fix classpath and packaging issue with ws4ee client test
Revision Changes Path
1.364 +6 -4 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.363
retrieving revision 1.364
diff -u -r1.363 -r1.364
--- build.xml 6 May 2004 16:24:20 -0000 1.363
+++ build.xml 6 May 2004 18:49:04 -0000 1.364
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.363 2004/05/06 16:24:20 tdiesler Exp $ -->
+<!-- $Id: build.xml,v 1.364 2004/05/06 18:49:04 tdiesler Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -153,7 +153,7 @@
<path refid="jboss.system.classpath"/>
<path refid="jboss.transaction.classpath"/>
<path refid="jboss.varia.classpath"/>
- <!--path refid="jboss.webservice.classpath"/-->
+ <path refid="jboss.webservice.classpath"/>
</path>
<!-- ===== -->
@@ -4853,7 +4853,7 @@
</target>
<!-- webservice tests -->
- <target name="_jars-webservice" depends="compile">
+ <target name="_jars-webservice">
<mkdir dir="${build.lib}"/>
<!-- The wsr.wsr -->
@@ -5094,6 +5094,8 @@
<fileset dir="${build.classes}">
<include name="org/jboss/test/ws4ee/ws4eesimple/HelloWs.class"/>
<include name="org/jboss/test/ws4ee/ws4eesimple/HelloWsClientApp.class"/>
+ <include name="org/jboss/test/ws4ee/ws4eesimple/HelloHome.class"/>
+ <include name="org/jboss/test/ws4ee/ws4eesimple/Hello.class"/>
</fileset>
<metainf dir="${source.resources}/ws4ee/ws4eesimple-client/META-INF">
<include name="application-client.xml"/>
@@ -5116,9 +5118,9 @@
<jar destfile="${build.lib}/ws4eesimple-client-ejb.jar" manifest="${build.etc}/manifest.mf">
<fileset dir="${build.classes}">
<include name="org/jboss/test/ws4ee/ws4eesimple/HelloWs.class"/>
- <include name="org/jboss/test/ws4ee/ws4eesimple/Hello.class"/>
<include name="org/jboss/test/ws4ee/ws4eesimple/HelloClientBean.class"/>
<include name="org/jboss/test/ws4ee/ws4eesimple/HelloHome.class"/>
+ <include name="org/jboss/test/ws4ee/ws4eesimple/Hello.class"/>
</fileset>
<metainf dir="${source.resources}/ws4ee/ws4eesimple-client/META-INF">
<include name="ejb-jar.xml"/>
|