Author: mvdb Date: Wed Nov 9 12:06:48 2005 New Revision: 332131 URL: http://svn.apache.org/viewcvs?rev=332131&view=rev Log: Copying over the database.dtd just after compile, since it is expected to be on the classpath by the tests
Modified: db/ddlutils/trunk/build.xml Modified: db/ddlutils/trunk/build.xml URL: http://svn.apache.org/viewcvs/db/ddlutils/trunk/build.xml?rev=332131&r1=332130&r2=332131&view=diff ============================================================================== --- db/ddlutils/trunk/build.xml (original) +++ db/ddlutils/trunk/build.xml Wed Nov 9 12:06:48 2005 @@ -55,14 +55,15 @@ optimize="false"> <classpath refid="compilation-classpath"/> </javac> + <copy todir="${build.java.dir}"> + <fileset dir="${src.java.dir}" + excludes="**/*.java"/> + </copy> </target> <target name="jar" description="Creates the jar" depends="compile"> - <copy todir="${build.java.dir}/resources"> - <fileset dir="${src.resources.dir}"/> - </copy> <copy todir="${build.java.dir}"> <fileset dir="${src.java.dir}" excludes="**/*.java"/> @@ -261,4 +262,4 @@ <property key="checkstyle.cache.file" file="${build.check.dir}/checkstyle/cachefile"/> </checkstyle> </target> -</project> \ No newline at end of file +</project>