Add "_excluded" folder to resources and exclude from Ant build. For resources that should be kept but not included in the JAR file.

master
lodici 2015-09-17 09:19:17 +01:00
parent 91cb25e415
commit c45d4d13da
2 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,7 @@
<copy includeemptydirs="false" todir="build">
<fileset dir="resources">
<exclude name="**/.svn"/>
<exclude name="**/_excluded/**"/>
</fileset>
</copy>
</target>

View File

@ -0,0 +1 @@
Any files in here will not be included in the JAR if it is built with Ant.