-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.xml
214 lines (162 loc) · 8 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?xml version="1.0" encoding="US-ASCII"?>
<project name="headlong" default="all">
<property file="headlong.properties"/>
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/><!--release 8 -source 8 -target 8 -->
<property name="compiler.max.memory" value="700m"/>
<patternset id="ignored.files">
<exclude name="**/*.hprof/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/*.rbc/**"/>
<exclude name="**/*.yarb/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/CVS/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/vssver.scc/**"/>
<exclude name="**/vssver2.scc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.war"/>
<include name="*.swc"/>
<include name="*.apk"/>
<include name="*.zip"/>
<include name="*.egg"/>
<include name="*.ear"/>
<include name="*.ane"/>
<include name="*.jar"/>
<include name="*.klib"/>
</patternset>
<patternset id="compiler.resources">
<exclude name="**/?*.java"/>
<exclude name="**/?*.form"/>
<exclude name="**/?*.class"/>
<exclude name="**/?*.groovy"/>
<exclude name="**/?*.scala"/>
<exclude name="**/?*.flex"/>
<exclude name="**/?*.kt"/>
<exclude name="**/?*.clj"/>
<exclude name="**/?*.aj"/>
</patternset>
<!-- JDK definitions -->
<property name="project.jdk.classpath" value="jdk.classpath"/>
<!-- Project Libraries -->
<path id="lib.mvn:_com.google.code.gson:gson:2.10.1.classpath">
<pathelement location="${user.home}${repository}${gson_path}/gson-2.10.1.jar"/>
</path>
<!-- Modules -->
<!-- Module headlong -->
<dirname property="module.headlong.basedir" file="${ant.file}"/>
<property name="module.jdk.classpath.headlong" value="${project.jdk.classpath}"/>
<property name="compiler.args.headlong" value="-encoding US-ASCII ${compiler.args}"/>
<property name="headlong.output.dir" value="${module.headlong.basedir}/classes/production/headlong"/>
<property name="headlong.testoutput.dir" value="${module.headlong.basedir}/classes/test/headlong"/>
<path id="headlong.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="headlong.runtime.production.module.classpath">
<pathelement location="${headlong.output.dir}"/>
</path>
<path id="headlong.module.classpath">
<pathelement location="${headlong.output.dir}"/>
</path>
<path id="headlong.runtime.module.classpath">
<pathelement location="${headlong.testoutput.dir}"/>
<pathelement location="${headlong.output.dir}"/>
</path>
<patternset id="excluded.from.module.headlong">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.headlong">
<patternset refid="excluded.from.module.headlong"/>
</patternset>
<target name="compile.module.headlong" depends="compile.module.headlong.production,compile.module.headlong.tests" description="Compile module headlong"/>
<target name="compile.module.headlong.production" description="Compile module headlong; production classes"/>
<target name="compile.module.headlong.tests" depends="compile.module.headlong.production" description="compile module headlong; test classes" unless="skip.tests"/>
<target name="clean.module.headlong" description="cleanup module">
<delete dir="${headlong.output.dir}"/>
<delete dir="${headlong.testoutput.dir}"/>
<delete dir="${basedir}/build/lib"/>
<delete dir="${basedir}/build/classes"/>
</target>
<!-- Module headlong.main -->
<dirname property="module.headlong.main.basedir" file="${ant.file}"/>
<property name="module.jdk.classpath.headlong.main" value="${project.jdk.classpath}"/>
<property name="compiler.args.headlong.main" value="-encoding US-ASCII ${compiler.args}"/>
<property name="headlong.main.output.dir" value="${module.headlong.main.basedir}/build/classes/java/main"/>
<property name="headlong.main.testoutput.dir" value="${module.headlong.main.basedir}/build/classes/java/main"/>
<path id="headlong.main.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="headlong.main.module.production.classpath">
<path refid="lib.mvn:_com.google.code.gson:gson:2.10.1.classpath"/>
</path>
<path id="headlong.main.runtime.production.module.classpath">
<pathelement location="${headlong.main.output.dir}"/>
<path refid="lib.mvn:_com.google.code.gson:gson:2.10.1.classpath"/>
</path>
<path id="headlong.main.module.classpath">
<pathelement location="${headlong.main.output.dir}"/>
<path refid="lib.mvn:_com.google.code.gson:gson:2.10.1.classpath"/>
</path>
<path id="headlong.main.runtime.module.classpath">
<pathelement location="${headlong.main.output.dir}"/>
<path refid="lib.mvn:_com.google.code.gson:gson:2.10.1.classpath"/>
</path>
<patternset id="excluded.from.module.headlong.main">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.headlong.main">
<patternset refid="excluded.from.module.headlong.main"/>
</patternset>
<path id="headlong.main.module.sourcepath">
<dirset dir="${module.headlong.main.basedir}/src/main">
<include name="java"/>
</dirset>
</path>
<target name="compile.module.headlong.main" depends="compile.module.headlong.main.production,compile.module.headlong.main.tests" description="Compile module headlong.main"/>
<target name="compile.module.headlong.main.production" description="Compile module headlong.main; production classes">
<mkdir dir="${headlong.main.output.dir}"/>
<javac includeantruntime="false" destdir="${headlong.main.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" source="1.8" target="1.8">
<compilerarg line="${compiler.args.headlong.main}"/>
<bootclasspath refid="headlong.main.module.bootclasspath"/>
<classpath refid="headlong.main.module.production.classpath"/>
<src refid="headlong.main.module.sourcepath"/>
<patternset refid="excluded.from.compilation.headlong.main"/>
</javac>
<copy todir="${headlong.main.output.dir}">
<fileset dir="${module.headlong.main.basedir}/src/main/java">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.headlong.main.tests" depends="compile.module.headlong.main.production" description="compile module headlong.main; test classes" unless="skip.tests"/>
<target name="clean.module.headlong.main" description="cleanup module">
<delete dir="${headlong.main.output.dir}"/>
<delete dir="${headlong.main.testoutput.dir}"/>
</target>
<target name = "build-jar">
<jar destfile = "${basedir}/build/lib/headlong-${project.version}.jar"
basedir = "${basedir}/build/classes/java/main">
<manifest>
<attribute name = "Implementation-Title" value = "${project.name}"/>
<attribute name = "Implementation-Version" value = "${project.version}"/>
<attribute name= "Automatic-Module-Name" value="com.esaulpaugh.headlong"/>
<attribute name= "Created-By" value="Apache Ant"/>
</manifest>
</jar>
</target>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.headlong, clean.module.headlong.main" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.headlong, compile.module.headlong.main" description="build all modules"/>
<target name="all" depends="build.modules" description="build all"/>
</project>