[jboss-svn-commits] JBL Code SVN: r8697 - labs/jbossesb/trunk/product/samples/quickstarts/helloworld_ftp_action

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jan 4 20:47:29 EST 2007


Author: burrsutter
Date: 2007-01-04 20:47:28 -0500 (Thu, 04 Jan 2007)
New Revision: 8697

Modified:
   labs/jbossesb/trunk/product/samples/quickstarts/helloworld_ftp_action/build.xml
Log:
removed "/lib" reference from classpath, since the directory did not exist this cause an error message

Modified: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_ftp_action/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_ftp_action/build.xml	2007-01-05 01:40:31 UTC (rev 8696)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_ftp_action/build.xml	2007-01-05 01:47:28 UTC (rev 8697)
@@ -9,16 +9,12 @@
 
 	<path id="classpath">
     <!-- fileset dir="${basedir}" includes="jbossesb-properties.xml" -->
-    <!-- fileset dir="${basedir}" includes="juddi.properties" -->
-    <fileset dir="${basedir}/lib" includes="*jar"/>    
+    <!-- fileset dir="${basedir}" includes="juddi.properties" -->  
 	<fileset dir="${esb.product.lib.dir}" includes="*jar"/>
 	<fileset dir="${esb.product.lib.dir}" includes="*xml"/>
 	<fileset dir="${esb.product.lib.dir}/ext" includes="*jar"/>
 	<fileset dir="${jbosshome.dir}/client" includes="*jar"/>
-	<fileset dir="${jbosshome.dir}/server/default/lib">
-			<include name="jboss-j2ee.jar"/> <!-- added this for the JMS client -->
-	</fileset>		
-  	
+		  	
   <fileset dir="${basedir}" includes="build/**/*.jar"/>
   <fileset dir="${basedir}" includes="build/**/*.xml"/>
   <pathelement location="." />
@@ -70,17 +66,7 @@
 	  		todir="${jbosshome.dir}/server/default/conf"
 	  	/>
 	  	<touch file="${jbosshome.dir}/server/default/deploy/jbossesb.sar/META-INF/jboss-service.xml"/>
-	  	<echo>Check your AS console to see if everything deployed properly then run 'ant runtest'</echo>
   </target>
 	
-  <target name="runtest">
-     <echo>Runs Test File creator (local filesystem)</echo>
-     <java fork="yes" classname="quickstart.hw_ftp_action.test.CreateTestFile" failonerror="true">
-     	<arg value="/home/ftpuser/tmp/esbInput"/> <!--  Directory -->
-     	<arg value="MyInput.dat"/> <!--  File name -->
-     	<arg value="Hello World In A File (for FTP gateway)"/> <!--  File Contnets -->
-		<classpath refid="classpath"/>
-     </java>
-  </target>  
 
 </project>
\ No newline at end of file




More information about the jboss-svn-commits mailing list