-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
48 lines (45 loc) · 1.17 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project default="jar">
<!--
Run this target to create a distributable jar file.
-->
<target name="jar">
<jar
destfile="dist/rpgeeze.jar"
basedir="."
excludes="bin/**,dist/**,.project,.classpath"
>
<fileset dir="bin"/>
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="RunGame"/>
</manifest>
</jar>
</target>
<!--
Run this target to generate documentation. Hopefully everyone
remembers to update the package list below if/when a new
package is added.
-->
<target name="javadoc">
<javadoc
access="private"
author="true"
classpath="."
destdir="doc"
doctitle="rpgeeze Javadocs"
nodeprecated="false"
nodeprecatedlist="false"
noindex="false"
nonavbar="false"
notree="false"
packagenames="controller,model,view,model.items,util"
source="1.6"
sourcefiles="src/RunGame.java"
sourcepath="src"
splitindex="true"
use="false"
version="true"
/>
</target>
</project>