This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
build.xml
272 lines (233 loc) · 8.18 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<?xml version="1.0" encoding="UTF-8"?>
<project name="ceylon" default="help" basedir="."
xmlns:if="ant:if"
>
<tstamp>
<format property="NOW" pattern="yyyyMMddHHmm" />
</tstamp>
<property name="ceylon.dist.dir" value="${basedir}/dist"/>
<target name="help">
<echo>Options for building a Ceylon distribution for local use:
ant status - Shows the Git status of the project
ant update - Updates the Git repository of the project
ant clean - Cleans the project
ant dist - Builds the Ceylon distrubtion for local use
Some super-charged ant tasks:
ant status-all - Shows the Git status of all projects related to the
distribution, SDK and IDE
ant update-all - Updates the Git repositories of the above projects
ant clean-all - Cleans all of the above mentioned projects
ant sdk - Builds the SDK project
ant eclipse - Builds all IDE related projects + the Eclipse plugin
ant intellij - Builds all IDE related projects + the IntelliJ plugin</echo>
</target>
<!-- The following tasks all redirect to "dist/build.xml" -->
<target name="status">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="status"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="update">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="update"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="clean">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="clean-projects"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="clean-packages">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="clean-packages"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="dist">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="dist"
inheritall="false"
useNativeBasedir="true">
<property name="buildid" value="${buildid}" />
</ant>
</target>
<target name="package">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="package"
inheritall="false"
useNativeBasedir="true">
<property name="buildid" value="${buildid}" />
</ant>
</target>
<target name="release">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="release"
inheritall="false"
useNativeBasedir="true">
<property name="buildid" value="${buildid}" />
</ant>
</target>
<target name="nightly">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="nightly"
inheritall="false"
useNativeBasedir="true">
<property name="buildid" value="${buildid}" />
</ant>
</target>
<target name="test">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="test"
inheritall="false"
useNativeBasedir="true">
<property name="buildid" value="${buildid}" />
<propertyset>
<propertyref prefix="ceylon.tests." />
</propertyset>
</ant>
</target>
<target name="test-quick">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="test-quick"
inheritall="false"
useNativeBasedir="true">
<property name="buildid" value="${buildid}" />
<propertyset>
<propertyref prefix="ceylon.tests." />
</propertyset>
</ant>
</target>
<!-- The following tasks all redirect to "dist/sdk-build.xml" -->
<target name="setup-sdk">
<ant antfile="${ceylon.dist.dir}/sdk-build.xml"
target="setup"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="setup-admins-sdk">
<ant antfile="${ceylon.dist.dir}/sdk-build.xml"
target="setup-admins"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="status-sdk">
<ant antfile="${ceylon.dist.dir}/sdk-build.xml"
target="status"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="update-sdk">
<ant antfile="${ceylon.dist.dir}/sdk-build.xml"
target="update"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="clean-sdk">
<ant antfile="${ceylon.dist.dir}/sdk-build.xml"
target="clean"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="sdk">
<ant antfile="${ceylon.dist.dir}/sdk-build.xml"
target="sdk"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<!-- The following tasks all redirect to "dsit/ide-build.xml" -->
<target name="setup-ide">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="setup"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="setup-admins-ide">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="setup-admins"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="status-ide">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="status"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="update-ide">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="update"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="clean-ide">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="clean"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="clean-projects-ide">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="clean-projects"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="eclipse">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="eclipse"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="eclipse-switch-to-last-release-updates">
<ant antfile="${ceylon.dist.dir}/ide-build.xml"
target="eclipse-switch-to-last-release-updates"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="eclipse-switch-back-to-master">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="eclipse-switch-back-to-master"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="eclipse-rebuild-last-release-updates">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="eclipse-rebuild-last-release-updates"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<target name="intellij">
<ant antfile="${ceylon.dist.dir}/build.xml"
target="intellij"
inheritall="false"
useNativeBasedir="true">
</ant>
</target>
<!-- The following tasks do work on the Distribution, the SDK and the IDE -->
<target name="status-all" depends="status,status-sdk,status-ide" />
<target name="update-all" depends="update,update-sdk,update-ide" />
<target name="clean-all" depends="clean,clean-sdk,clean-ide" />
<target name="do-all" depends="dist,sdk,eclipse" />
</project>