This is an automated email from the git hooks/post-receive script. henrich pushed a commit to branch patch-queue/master in repository pleiades.
commit 6f5d142effda944b86a025549ed1a21800b7920f Author: Debian Java Maintainers <[email protected]> Date: Tue Nov 17 21:52:36 2015 +0900 compile_junit Author: Hideki Yamane <[email protected]> Gbp-Pq: Name compile_junit.patch --- build.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build.xml b/build.xml index 28a3a7f..8be7f30 100644 --- a/build.xml +++ b/build.xml @@ -321,7 +321,17 @@ --> <!-- ユニット・テスト --> - <target name="test.unit" description=""> + <target name="prepare" depends="javac"> + <copy todir="bin"> + <fileset dir="${bin.dir}"> + <include name="**/*" /> + </fileset> + </copy> + <mkdir dir="bintest" /> + <javac srcdir="srctest" destdir="bintest" classpathref="project.classpath" encoding="UTF-8" source="1.5" target="1.5" /> + </target> + + <target name="test.unit" depends="prepare" description=""> <mkdir dir="report" /> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/pleiades.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

