-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
386 lines (322 loc) · 9.35 KB
/
build.gradle
File metadata and controls
386 lines (322 loc) · 9.35 KB
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
apply plugin: 'base'
def mcVersions = [
'1.7',
'1.8',
'1.9',
'1.10',
'1.11',
'1.12',
'1.13',
'1.14',
'1.15'
]
defaultTasks 'packs'
task packs {
group = 'Build'
description "Builds all versions of the resource pack."
dependsOn 'v1_7'
dependsOn 'v1_7_ingame'
dependsOn 'v1_8'
dependsOn 'v1_8_ingame'
dependsOn 'v1_9'
dependsOn 'v1_9_ingame'
dependsOn 'v1_10'
dependsOn 'v1_10_ingame'
dependsOn 'v1_11'
dependsOn 'v1_11_ingame'
dependsOn 'v1_12'
dependsOn 'v1_12_ingame'
dependsOn 'v1_13'
dependsOn 'v1_13_ingame'
dependsOn 'v1_14'
dependsOn 'v1_14_ingame'
dependsOn 'v1_15'
dependsOn 'v1_15_ingame'
}
tasks.assemble.dependsOn 'packs'
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
def fileTreeMap = [:]
fileTreeMap['common'] = makeTree('common')
mcVersions.each { it ->
fileTreeMap[it] = makeTree(it)
}
def widgets = [
'assets/appleskin/textures/icons.png',
'assets/minecraft/textures/gui/container/bars.png',
'assets/minecraft/textures/gui/icons.png',
'assets/minecraft/textures/gui/resource_packs.png',
'assets/minecraft/textures/gui/server_selection.png',
'assets/minecraft/textures/gui/widgets.png',
'assets/minecraft/textures/gui/world_selection.png'
]
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_7(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.7']
from fileTreeMap['common']
exclude excludeList(file('1.7/.exclude'))
into "${buildDir}/1.7"
}
task v1_7(type:Zip) {
includeEmptyDirs = false
group = 'Build'
description "Builds the pack for Minecraft 1.7"
classifier = '1.7'
from unpacked_v1_7
exclude excludeList(file('1.7/.exclude_from_zip'))
}
task v1_7_ingame(type:Zip) {
includeEmptyDirs = false
group = 'Build'
description "Builds the pack for Minecraft 1.7 without widgets"
classifier = '1.7-ingame_only'
from unpacked_v1_7
exclude widgets
exclude excludeList(file('1.7/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_8(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.8']
from unpacked_v1_7
exclude excludeList(file('1.8/.exclude'))
into "${buildDir}/1.8"
}
task v1_8(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.8"
classifier = '1.8'
from unpacked_v1_8
exclude excludeList(file('1.8/.exclude_from_zip'))
}
task v1_8_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.8 without widgets"
classifier = '1.8-ingame_only'
from unpacked_v1_8
exclude widgets
exclude excludeList(file('1.8/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_9(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.9']
from unpacked_v1_8
exclude excludeList(file('1.9/.exclude'))
into "${buildDir}/1.9"
}
task v1_9(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.9"
classifier = '1.9'
from unpacked_v1_9
exclude excludeList(file('1.9/.exclude_from_zip'))
}
task v1_9_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.9 without widgets"
classifier = '1.9-ingame_only'
from unpacked_v1_9
exclude widgets
exclude excludeList(file('1.9/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_10(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.10']
from unpacked_v1_9
exclude excludeList(file('1.10/.exclude'))
into "${buildDir}/1.10"
}
task v1_10(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.10"
classifier = '1.10'
from unpacked_v1_10
exclude excludeList(file('1.10/.exclude_from_zip'))
}
task v1_10_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.10 without widgets"
classifier = '1.10-ingame_only'
from unpacked_v1_10
exclude widgets
exclude excludeList(file('1.10/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_11(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.11']
from unpacked_v1_10
exclude excludeList(file('1.11/.exclude'))
into "${buildDir}/1.11"
}
task v1_11(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.11"
classifier = '1.11'
from unpacked_v1_11
exclude excludeList(file('1.11/.exclude_from_zip'))
}
task v1_11_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.11 without widgets"
classifier = '1.11-ingame_only'
from unpacked_v1_11
exclude widgets
exclude excludeList(file('1.11/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_12(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.12']
from unpacked_v1_11
exclude excludeList(file('1.12/.exclude'))
into "${buildDir}/1.12"
}
task v1_12(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.12"
classifier = '1.12'
from unpacked_v1_12
exclude excludeList(file('1.12/.exclude_from_zip'))
}
task v1_12_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.12 without widgets"
classifier = '1.12-ingame_only'
from unpacked_v1_12
exclude widgets
exclude excludeList(file('1.12/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_13(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.13']
from unpacked_v1_12
exclude excludeList(file('1.13/.exclude'))
into "${buildDir}/1.13"
}
task v1_13(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.13"
classifier = '1.13'
from unpacked_v1_13
exclude excludeList(file('1.13/.exclude_from_zip'))
}
task v1_13_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.13 without widgets"
classifier = '1.13-ingame_only'
from unpacked_v1_13
exclude widgets
exclude excludeList(file('1.13/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_14(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.14']
from unpacked_v1_13
exclude excludeList(file('1.14/.exclude'))
into "${buildDir}/1.14"
}
task v1_14(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.14"
classifier = '1.14'
from unpacked_v1_14
exclude excludeList(file('1.14/.exclude_from_zip'))
}
task v1_14_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.14 without widgets"
classifier = '1.14-ingame_only'
from unpacked_v1_14
exclude widgets
exclude excludeList(file('1.14/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
task unpacked_v1_15(type: Copy){
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
from fileTreeMap['1.15']
from unpacked_v1_14
exclude excludeList(file('1.15/.exclude'))
into "${buildDir}/1.15"
}
task v1_15(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.15"
classifier = '1.15'
from unpacked_v1_15
exclude excludeList(file('1.15/.exclude_from_zip'))
}
task v1_15_ingame(type:Zip) {
includeEmptyDirs = false
duplicatesStrategy = 'exclude'
group = 'Build'
description "Builds the pack for Minecraft 1.15 without widgets"
classifier = '1.15-ingame_only'
from unpacked_v1_15
exclude widgets
exclude excludeList(file('1.15/.exclude_from_zip'))
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
def excludeList(File f) {
def ignores = []
if (f.isFile()) {
f.eachLine { line ->
//ignore comments and empty lines
if (!line.startsWith('#') && !line.isEmpty()) {
ignores.add(line)
}
}
}
return ignores
}
def makeTree(dirSpec) {
return fileTree(dirSpec) {
exclude '**/*.psd'
exclude '**/desktop.ini'
exclude '.exclude'
exclude '.exclude_from_zip'
}
}