forked from sorinMD/StacSettlers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaven-eclipse.xml
20 lines (20 loc) · 1.02 KB
/
maven-eclipse.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<project default="copy-resources">
<target name="init"/>
<target name="copy-resources" depends="init">
<copy todir="target/classes/resources" filtering="false">
<fileset dir="src/resources" includes="" excludes="Resources.java|**/*.java"/>
</copy>
<copy todir="target/classes/Users/heriberto/Edinburgh/workspace/STACSettlers/branches/hwu-learning-2/java/target" filtering="false">
<fileset dir="." includes="config.txt|dbconfig.txt|configuration.xml|log4j2.yaml" excludes="**/*.java"/>
</copy>
<copy todir="target/classes/soc/client/images" filtering="false">
<fileset dir="src/soc/client/images" includes="" excludes="**/*.java"/>
</copy>
<copy todir="target/classes/soc/client/images/rotat" filtering="false">
<fileset dir="src/soc/client/images/rotat" includes="" excludes="**/*.java"/>
</copy>
<copy todir="target/classes/soc/client/sounds" filtering="false">
<fileset dir="src/soc/client/sounds" includes="" excludes="**/*.java"/>
</copy>
</target>
</project>