[Hattrickirc-commitlog] HattrickIRC .cvsignore, NONE, 1.1 build.xml, 1.12, 1.13
Status: Beta
Brought to you by:
suls
From: Mathias S. <su...@us...> - 2006-10-01 17:41:11
|
Update of /cvsroot/hattrickirc/HattrickIRC In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv20808 Modified Files: build.xml Added Files: .cvsignore Log Message: Changes from Boy van der Werf (nethyperon) --- NEW FILE: .cvsignore --- HattrickIRC.scrapbook.jpage .project .classpath Index: build.xml =================================================================== RCS file: /cvsroot/hattrickirc/HattrickIRC/build.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- build.xml 5 Jul 2005 12:53:40 -0000 1.12 +++ build.xml 1 Oct 2006 17:41:07 -0000 1.13 @@ -10,8 +10,8 @@ <property name="name" value="hattrickirc" /> <property name="Name" value="HattrickIrc" /> - <property name=".version" value="2.0.0-alpha" /> - <property name="_version" value="2_0_0-alpha" /> + <property name=".version" value="2.0.0-alpha-R2" /> + <property name="_version" value="2_0_0-alpha-R2" /> <property name="src.dir" value="src" /> <property name="lib.dir" value="lib" /> @@ -87,17 +87,18 @@ <!-- =================================================================== --> <target name="test.run" depends="test.compile" description="Runs the test code"> <mkdir dir="${test.reports.dir}"/> - <junit printsummary="yes" fork="yes"> - <classpath> - <pathelement location="${build.classes}" /> - <path refid="base.classpath" /> - </classpath> - <formatter type="plain" /> - <batchtest fork="yes" todir="${test.reports.dir}"> - <fileset dir="${test.src.dir}"> - <include name="**/*Test.java" /> - </fileset> - </batchtest> + + <junit printsummary="yes" fork="yes"> + <classpath> + <pathelement location="${build.classes}" /> + <path refid="base.classpath" /> + </classpath> + <formatter type="plain" /> + <batchtest fork="yes" todir="${test.reports.dir}"> + <fileset dir="${test.src.dir}"> + <include name="**/*Test.java" /> + </fileset> + </batchtest> </junit> </target> |