forked from MTrop/DoomStruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
74 lines (66 loc) · 2.4 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project>
<!-- ======================================================================
Doom Struct Build File
Matt Tropiano
====================================================================== -->
<project name="build" default="jar">
<description>Doom Struct</description>
<property file="build.properties" />
<!-- Dependencies -->
<property name="dev.base" value=".." />
<property name="S" value="${path.separator}" />
<!-- Project Libs -->
<!-- Project Info -->
<property name="project.archive" value="doomstruct" />
<property name="project.javadoc.title" value="Doom Struct" />
<property name="project.classpath" value=""/>
<property name="project.compiler.bootclasspath" value="" />
<property name="project.testclass" value="net.mtrop.doom.test.TestSuite"/>
<property name="project.testclass.main" value="net.mtrop.doom.test.TestUtils"/>
<property name="project.javadoc.packages" value="
net.mtrop.doom,
net.mtrop.doom.bsp,
net.mtrop.doom.bsp.data,
net.mtrop.doom.demo,
net.mtrop.doom.exception,
net.mtrop.doom.graphics,
net.mtrop.doom.map,
net.mtrop.doom.map.data,
net.mtrop.doom.map.data.flags,
net.mtrop.doom.map.udmf,
net.mtrop.doom.map.udmf.attributes,
net.mtrop.doom.map.udmf.listener,
net.mtrop.doom.object,
net.mtrop.doom.sound,
net.mtrop.doom.struct,
net.mtrop.doom.struct.io,
net.mtrop.doom.struct.map,
net.mtrop.doom.struct.trie,
net.mtrop.doom.struct.vector,
net.mtrop.doom.texture,
net.mtrop.doom.util
"
/>
<import file="build-import.xml" />
<target name="javadoc" depends="init.docs" description="Builds the documentation.">
<javadoc access="protected"
additionalparam="-J-Xmx512m " author="true"
classpath="${bin.dir}"
doctitle="${project.javadoc.title}"
sourcepath="${src.dir}"
packagenames="${project.javadoc.packages}"
destdir="${docs.dir}"
splitindex="true"
use="true"
version="true"
nodeprecated="false"
nodeprecatedlist="false"
noindex="false"
nonavbar="false"
notree="false"
>
<link href="https://docs.oracle.com/en/java/javase/11/docs/api/"/>
</javadoc>
</target>
</project>