This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.xml
200 lines (162 loc) · 7.3 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) Microsoft Corporation. All rights reserved.
~
~ Licensed under the MIT license.
-->
<project name="bakebread" default="all">
<property file="bakebread.properties"/>
<!-- Uncomment the following property if no tests compilation is needed -->
<!--
<property name="skip.tests" value="true"/>
-->
<!-- Compiler options -->
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/>
<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="**/*~/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/CVS/**"/>
<exclude name="**/RCS/**"/>
<exclude name="**/SCCS/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/rcs/**"/>
<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="*.ear"/>
<include name="*.egg"/>
<include name="*.ane"/>
<include name="*.jar"/>
</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>
<!-- Modules -->
<!-- Module bakebread -->
<dirname property="module.bakebread.basedir" file="${ant.file}"/>
<property name="compiler.args.bakebread" value="-encoding UTF-8 -source 1.7 -target 1.7 ${compiler.args}"/>
<property name="bakebread.output.dir" value="${module.bakebread.basedir}/out/production/bakebread"/>
<property name="bakebread.testoutput.dir" value="${module.bakebread.basedir}/out/test/bakebread"/>
<path id="bakebread.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="bakebread.module.production.classpath"/>
<path id="bakebread.runtime.production.module.classpath">
<pathelement location="${bakebread.output.dir}"/>
</path>
<path id="bakebread.module.classpath">
<pathelement location="${bakebread.output.dir}"/>
<pathelement location="${idea.home}/lib/junit.jar"/>
</path>
<path id="bakebread.runtime.module.classpath">
<pathelement location="${bakebread.testoutput.dir}"/>
<pathelement location="${bakebread.output.dir}"/>
<pathelement location="${idea.home}/lib/junit.jar"/>
</path>
<patternset id="excluded.from.module.bakebread">
<patternset refid="ignored.files"/>
<exclude name="out/**"/>
</patternset>
<patternset id="excluded.from.compilation.bakebread">
<patternset refid="excluded.from.module.bakebread"/>
</patternset>
<path id="bakebread.module.sourcepath">
<dirset dir="${module.bakebread.basedir}">
<include name="src"/>
</dirset>
</path>
<path id="bakebread.module.test.sourcepath">
<dirset dir="${module.bakebread.basedir}">
<include name="test"/>
</dirset>
</path>
<target name="compile.module.bakebread" depends="compile.module.bakebread.production,compile.module.bakebread.tests" description="Compile module bakebread"/>
<target name="compile.module.bakebread.production" description="Compile module bakebread; production classes">
<mkdir dir="${bakebread.output.dir}"/>
<javac destdir="${bakebread.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true">
<compilerarg line="${compiler.args.bakebread}"/>
<bootclasspath refid="bakebread.module.bootclasspath"/>
<classpath refid="bakebread.module.production.classpath"/>
<src refid="bakebread.module.sourcepath"/>
<patternset refid="excluded.from.compilation.bakebread"/>
</javac>
<copy todir="${bakebread.output.dir}">
<fileset dir="${module.bakebread.basedir}/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.bakebread.tests" depends="compile.module.bakebread.production" description="compile module bakebread; test classes" unless="skip.tests">
<mkdir dir="${bakebread.testoutput.dir}"/>
<javac destdir="${bakebread.testoutput.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true">
<compilerarg line="${compiler.args.bakebread}"/>
<bootclasspath refid="bakebread.module.bootclasspath"/>
<classpath refid="bakebread.module.classpath"/>
<src refid="bakebread.module.test.sourcepath"/>
<patternset refid="excluded.from.compilation.bakebread"/>
</javac>
<copy todir="${bakebread.testoutput.dir}">
<fileset dir="${module.bakebread.basedir}/test">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="clean.module.bakebread" description="cleanup module">
<delete dir="${bakebread.output.dir}"/>
<delete dir="${bakebread.testoutput.dir}"/>
</target>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.bakebread" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.bakebread" description="build all modules"/>
<target name="init.artifacts">
<property name="artifacts.temp.dir" value="${basedir}/__artifacts_temp"/>
<property name="artifact.output.bakebread:jar" value="${basedir}/bin"/>
<mkdir dir="${artifacts.temp.dir}"/>
<property name="temp.jar.path.bakebread.jar" value="${artifacts.temp.dir}/bakebread.jar"/>
</target>
<target name="artifact.bakebread:jar" depends="init.artifacts, compile.module.bakebread" description="Build 'bakebread:jar' artifact">
<property name="artifact.temp.output.bakebread:jar" value="${artifacts.temp.dir}/bakebread_jar"/>
<mkdir dir="${artifact.temp.output.bakebread:jar}"/>
<jar destfile="${temp.jar.path.bakebread.jar}" duplicate="preserve" filesetmanifest="merge">
<zipfileset dir="${bakebread.output.dir}"/>
</jar>
<copy file="${temp.jar.path.bakebread.jar}" tofile="${artifact.temp.output.bakebread:jar}/bakebread.jar"/>
</target>
<target name="build.all.artifacts" depends="artifact.bakebread:jar" description="Build all artifacts">
<mkdir dir="${artifact.output.bakebread:jar}"/>
<copy todir="${artifact.output.bakebread:jar}">
<fileset dir="${artifact.temp.output.bakebread:jar}"/>
</copy>
<!-- Delete temporary files -->
<delete dir="${artifacts.temp.dir}"/>
</target>
<target name="all" depends="build.modules, build.all.artifacts" description="build all"/>
</project>