[Gabel-guys] gabel build.xml,1.2,1.3
Status: Alpha
Brought to you by:
alllee
|
From: allen l. <al...@us...> - 2004-05-12 09:33:28
|
Update of /cvsroot/gabel/gabel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11753 Modified Files: build.xml Log Message: - Fixed a bug in KnownNodeServer (remove wouldn't work properly). - added a Tester for KnownNodeServer - fixed rmi targets in build.xml and made it a dependency in the test target (the KnownNodeServerTester requires the KnownNodeServer's stubs to be generated) Index: build.xml =================================================================== RCS file: /cvsroot/gabel/gabel/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 11 May 2004 17:00:03 -0000 1.2 --- build.xml 12 May 2004 09:32:44 -0000 1.3 *************** *** 66,71 **** <!-- stubs for RMI compiler (FIXME: unused)--> ! <target name="rmi" depends="clean,compile"> ! <rmic base="${build.home}" includes="**/Rmi*.class, **/AbstractRmi*.class" verify="true" /> </target> --- 66,71 ---- <!-- stubs for RMI compiler (FIXME: unused)--> ! <target name="rmi" depends="clean,prepare,compile"> ! <rmic base="${build.home}" includes="**/KnownNodeServer.class" verify="true" /> </target> *************** *** 166,170 **** <!-- Compile Tests --> ! <target name="compile-tests" depends="prepare, compile"> <javac srcdir="${test.src.home}" destdir="${test.build.home}" --- 166,170 ---- <!-- Compile Tests --> ! <target name="compile-tests" depends="rmi"> <javac srcdir="${test.src.home}" destdir="${test.build.home}" *************** *** 226,229 **** --- 226,236 ---- <!-- $Log$ + Revision 1.3 2004/05/12 09:32:44 alllee + - Fixed a bug in KnownNodeServer (remove wouldn't work properly). + - added a Tester for KnownNodeServer + - fixed rmi targets in build.xml and made it a dependency in the test target + (the KnownNodeServerTester requires the KnownNodeServer's stubs to be + generated) + Revision 1.2 2004/05/11 17:00:03 alllee adding build-all convenience target for cruisecontrol, right now it just |