Author: vgritsenko Date: Thu Dec 30 06:38:02 2004 New Revision: 123720 URL: http://svn.apache.org/viewcvs?view=rev&rev=123720 Log: move resource copy to right place
Modified: cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml Modified: cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml Url: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml?view=diff&rev=123720&p1=cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml&r1=123719&p2=cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml&r2=123720 ============================================================================== --- cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml (original) +++ cocoon/branches/BRANCH_2_1_X/tools/targets/compile-build.xml Thu Dec 30 06:38:02 2004 @@ -27,14 +27,6 @@ <!-- compiles mocks --> <target name="compile-mocks" depends="prepare"> - <!-- copy those files that need to be in the classpath --> - <copy todir="${build.dest}"> - <fileset dir="${java}"> - <exclude name="**/*.java"/> - <exclude name="**/*.xroles"/> - <exclude name="**/*.xconf"/> - </fileset> - </copy> <mkdir dir="${build.mocks}"/> <javac srcdir="${mocks}" destdir="${build.mocks}" @@ -50,6 +42,14 @@ <!-- compiles the core --> <target name="compile-core" depends="compile-mocks, clover.on"> + <!-- copy those files that need to be in the classpath --> + <copy todir="${build.dest}"> + <fileset dir="${java}"> + <exclude name="**/*.java"/> + <exclude name="**/*.xroles"/> + <exclude name="**/*.xconf"/> + </fileset> + </copy> <javac srcdir="${java}" destdir="${build.dest}" debug="${compiler.debug}"