[Picross-commit] SF.net SVN: picross:[109] branches/engine_split
Status: Pre-Alpha
Brought to you by:
yvan_norsa
From: <yva...@us...> - 2013-01-10 12:27:23
|
Revision: 109 http://sourceforge.net/p/picross/code/109 Author: yvan_norsa Date: 2013-01-10 12:27:19 +0000 (Thu, 10 Jan 2013) Log Message: ----------- cleaning Modified Paths: -------------- branches/engine_split/build.xml Removed Paths: ------------- branches/engine_split/common/src/picross/specific/grid/ Modified: branches/engine_split/build.xml =================================================================== --- branches/engine_split/build.xml 2013-01-10 12:14:00 UTC (rev 108) +++ branches/engine_split/build.xml 2013-01-10 12:27:19 UTC (rev 109) @@ -31,8 +31,6 @@ value="common/test" /> <property name="swing.test.dir" value="swing/test" /> - <property name="game.test.dir" - value="test" /> <property name="swing.jar.name" value="${dist.dir}/${ant.project.name}-swing.jar" /> @@ -129,7 +127,7 @@ </target> <target name="common-compile" - depends="-init"> + depends="-init,engine-dist"> <javac srcdir="${common.src.dir}" destdir="${common.build.dir}" deprecation="on" @@ -204,19 +202,6 @@ </javac> </target> - <target name="game-compile-test" - depends="game-compile"> - <javac srcdir="${game.test.dir}" - destdir="${game.build.dir}" - deprecation="on" - debug="on" - optimize="off"> - <compilerarg value="-Xlint:all" /> - - <classpath refid="classpath" /> - </javac> - </target> - <target name="engine-dist" depends="engine-compile"> <jar destfile="${engine.jar.name}" @@ -299,7 +284,7 @@ </target> <target name="test" - depends="engine-test,common-test,swing-test,game-test" /> + depends="engine-test,common-test,swing-test" /> <target name="engine-test" depends="dist,engine-compile-test"> @@ -361,26 +346,6 @@ </junit> </target> - <target name="game-test" - depends="dist,game-compile-test"> - <junit filtertrace="off" - showoutput="on" - printsummary="withOutAndErr"> - <formatter type="plain" - usefile="false" /> - - <batchtest fork="yes" - filtertrace="on"> - <fileset dir="${game.test.dir}"> - <include name="**/*Test.java" /> - <exclude name="**/Abstract*Test.java" /> - </fileset> - </batchtest> - - <classpath refid="classpath" /> - </junit> - </target> - <target name="clean"> <delete dir="${swing.build.dir}" /> <delete dir="${common.build.dir}" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |