[Firebug-cvs] firebug/project/java build.xml,1.8,1.9
Brought to you by:
doolin
From: <do...@us...> - 2003-07-30 21:43:24
|
Update of /cvsroot/firebug/firebug/project/java In directory sc8-pr-cvs1:/tmp/cvs-serv5788/project/java Modified Files: build.xml Log Message: listenFB will now run from build.xml using ant if the build properties has the paths set correctly. Index: build.xml =================================================================== RCS file: /cvsroot/firebug/firebug/project/java/build.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** build.xml 23 May 2003 00:57:14 -0000 1.8 --- build.xml 30 Jul 2003 21:43:21 -0000 1.9 *************** *** 70,83 **** </target> <target name="run" depends="jar"> ! <echo message="Running Listener: java -classpath ${classpath} org.firebug.ListenRawFB"/> ! <!-- ! <java classpath="${dist}/firebug.jar" classname="org.firebug.ListenRawFB" fork="yes"/> ! --> ! <java classpath=".\dist\firebug.jar;C:\jdk1.3.1_01\lib\comm.jar" classname="org.firebug.ListenRawFB" fork="yes"> ! <arg value="COM1"/> </java> </target> - --- 70,81 ---- </target> + <target name="run" depends="jar"> ! <echo message="Running ListenFB: java -cp ${AMTOOLS};.\jar\mysql.jar;.\dist\tosmc.jar;${COMM}/comm.jar" /> ! <java classpath="${AMTOOLS};.\jar\mysql.jar;.\dist\firebug.jar;${COMM}/comm.jar" ! classname="org.firebug.ListenFB" fork="yes"> ! <arg line="-e foo COM1" /> </java> </target> |