Include resource files in ANT build

This commit is contained in:
Ziver Koc 2016-02-27 02:33:13 +01:00
parent b5b38f9128
commit 0251b338f0

View file

@ -68,6 +68,10 @@
<classpath refid="classpath.build" /> <classpath refid="classpath.build" />
<include name="**/*.java" /> <include name="**/*.java" />
</javac> </javac>
<copy todir="${buildDir}">
<fileset dir="${srcDir}"
excludes="**/*.java" />
</copy>
</target> </target>
<target name="build-test" depends="build"> <target name="build-test" depends="build">
@ -77,6 +81,10 @@
<classpath refid="classpath.test" /> <classpath refid="classpath.test" />
<include name="**/*.java" /> <include name="**/*.java" />
</javac> </javac>
<copy todir="${buildTestDir}">
<fileset dir="${testDir}"
excludes="**/*.java" />
</copy>
</target> </target>
</project> </project>