-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.xml
More file actions
19 lines (19 loc) · 1020 Bytes
/
build.xml
File metadata and controls
19 lines (19 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<project name="Whitehole" default="default" basedir=".">
<description>Builds, tests, and runs the project Whitehole.</description>
<import file="nbproject/build-impl.xml"/>
<target name="-post-jar">
<copy file="Whitehole.bat" todir="${dist.dir}"/>
<copy file="data/hashlookup.txt" todir="${dist.dir}/data"/>
<copy file="data/galaxies.json" todir="${dist.dir}/data"/>
<copy file="data/zones.json" todir="${dist.dir}/data"/>
<copy file="data/modelsubstitutions.json" todir="${dist.dir}/data"/>
<copy file="data/specialrenderers.json" todir="${dist.dir}/data"/>
<copy file="data/hints.json" todir="${dist.dir}/data"/>
<copy file="data/shortcuts.json" todir="${dist.dir}/data"/>
<copy file="data/areamanagerlimits.json" todir="${dist.dir}/data"/>
<copy todir="${dist.dir}/data/templates">
<fileset dir="data/templates"/>
</copy>
</target>
</project>