2003-01-30 10:59:36 +00:00

19 lines
329 B
XML

<project default="java:jar"
xmlns:j="jelly:core"
xmlns:u="jelly:util"
xmlns:ant="jelly:ant"
xmlns:m="maven">
<postGoal name="java:compile">
<copy toDir="target/classes">
<fileset dir="src/main">
<includes name="**/*"/>
<excludes name="**/*.java"/>
</fileset>
</copy>
</postGoal>
</project>