-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
432 lines (333 loc) · 12.1 KB
/
build.gradle
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
import java.awt.Desktop
buildscript {
repositories {}
}
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.10.3'
id 'org.kordamp.markdown.convert' version '1.2.0'
}
// configures version for release plugin
scmVersion {
tag {
prefix = 'tduf'
}
}
// Helper script
apply from: './src/main/groovy/helper.gradle'
// Project definition
allprojects {
project.group = 'fr.tduf'
// version defined by plugin (if changes or ahead commits: x.y.z-SNAPSHOT)
project.version = scmVersion.version
// Version for common dependencies
ext {
args4jVersion = '2.33'
assertjVersion = '3.15.0'
commonsLangVersion = '3.10'
exp4jVersion = '0.4.8'
j5systemexitVersion = '1.0.0'
jacksonVersion = '2.10.3'
jaxbapiVersion = '2.3.1'
jsonassertVersion = '1.5.0'
junitJupiterVersion = '5.6.2'
minlogVersion = '1.3.1'
mockitoVersion = '3.3.3'
testfxVersion = '4.0.16-alpha'
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.kordamp.markdown.convert'
repositories {
maven {
url "https://repo1.maven.org/maven2"
}
flatDir name: 'embeddedRepository', dirs: '../lib'
}
test {
useJUnitPlatform()
}
dependencies {
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "$jacksonVersion"
implementation group: 'org.apache.commons', name: 'commons-lang3', version: "$commonsLangVersion"
implementation group: 'com.esotericsoftware', name: 'minlog', version: "$minlogVersion"
testImplementation project(':lib-testing')
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: "$junitJupiterVersion"
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: "$junitJupiterVersion"
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
options.encoding = 'UTF-8'
}
compileTestJava {
options.encoding = 'UTF-8'
}
task copyMainScripts(type: Copy) {
description 'Copies CLI main scripts to release directory (for single module packaging).'
mustRunAfter ':cleanPackDir'
if (project.hasProperty('target') && target == LINUX_TARGET) {
from 'src/main/shell/linux/'
include '*.sh'
} else {
from 'src/main/shell/windows/'
include '*.cmd'
}
into '../pack/'
}
task copyUtilScripts(type: Copy) {
description 'Copies CLI utility scripts to pack/tools/cli directory (for single module packaging).'
mustRunAfter ':cleanPackDir'
if (project.hasProperty('target') && target == LINUX_TARGET) {
from '../src/main/shell/linux/cli-util/'
include '*.sh'
include 'linux-aliases'
} else {
from '../src/main/shell/windows/cli-util/'
include '*.cmd'
}
into '../pack/tools/cli'
}
task copyDoc(type: Copy) {
description 'Copies formatted README to release directory (for single module packaging).'
mustRunAfter 'markdownToHtml'
from "$buildDir/gen-html"
include '*.html'
into '../pack/'
}
task updateExternalTools(type: Copy) {
description 'Copies external tools to installer development tree to ensure proper functioning.'
from '../tools/'
into 'tools/'
}
}
project(':lib-testing') {
apply plugin: 'java-library'
dependencies {
api group: 'org.assertj', name: 'assertj-core', version: "$assertjVersion"
api group: 'org.skyscreamer', name: 'jsonassert', version: "$jsonassertVersion"
api group: 'org.mockito', name: 'mockito-core', version: "$mockitoVersion"
api group: 'org.testfx', name: 'testfx-junit5', version: "$testfxVersion"
api group: 'com.ginsberg', name: 'junit5-system-exit', version: "$j5systemexitVersion"
implementation project(':lib-unlimited')
}
}
project(':lib-unlimited') {
apply plugin: 'java-library'
dependencies {
implementation group: 'net.objecthunter', name: 'exp4j', version: "$exp4jVersion"
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: "$jaxbapiVersion"
implementation group: 'io.github.classgraph', name: 'classgraph', version: "4.8.80"
api group: 'commons-io', name: 'commons-io', version: '2.6'
}
task copyStructures(type: Copy) {
description 'Copies structures to release directory.'
group 'packaging'
from 'src/main/resources/files/structures/'
include '*'
into '../pack/structures'
}
}
project(':cli') {
dependencies {
implementation project(':lib-unlimited')
implementation group: 'args4j', name: 'args4j', version: "$args4jVersion"
}
jar {
manifest.attributes provider: 'gradle'
}
}
project(':gui-common') {
apply plugin: 'java-library'
dependencies {
api project(':lib-unlimited')
testImplementation project(':lib-testing')
}
}
project(':gui-database') {
dependencies {
implementation project(':gui-common')
}
task execute(type:JavaExec) {
group 'binaries'
main 'fr.tduf.gui.database.DatabaseEditor'
classpath sourceSets.main.runtimeClasspath
}
task copyThemes(type: Copy) {
description 'Copies all default themes to release directory.'
group 'packaging'
mustRunAfter ':cleanPackDir'
from 'src/main/resources/gui-database/css/themes/'
include '*.css'
into '../pack/themes/'
}
}
project(':integ-tests') {
dependencies {
testImplementation project(':lib-testing')
testImplementation project(':lib-unlimited')
testImplementation project(':cli')
}
task integTestReport() {
group 'verification'
doLast {
// On CI, reports are published to AWS
if (System.getenv('CI') == null) {
// Local dev machine
def reportFileAbsolutePath = file('./build/reports/tests/test/index.html').toString().replaceAll('\\\\', '/')
try {
Desktop.desktop.browse(('file://' + reportFileAbsolutePath).toURI())
} catch (error) {
System.err.println('Could not display integ test results!')
System.err.println(error)
}
}
}
}
tasks.test.finalizedBy tasks.integTestReport
}
// Main tasks
def tempJarDirectory = 'tmp-jarContents/'
task gatherFullContentsForJar(type: Copy, dependsOn: getFullProjects().collect{ it+":compileJava"}) {
description 'Copies contents to temp directory (full packaging).'
group 'build'
// Project sources
from files(getFullProjects().collect{ project(it).sourceSets.main.output })
// External libraries
from files(getFullProjects().collect{ project(it).configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } } )
into tempJarDirectory
}
task gatherDatabaseEditorContentsForJar(type: Copy, dependsOn: getDatabaseEditorProjects().collect{ it+":compileJava"}) {
description 'Copies contents to temp directory (Database Editor packaging).'
group 'build'
// Project sources
from files(getDatabaseEditorProjects().collect{ project(it).sourceSets.main.output })
// External libraries
from files(getDatabaseEditorProjects().collect{ project(it).configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } } )
into tempJarDirectory
}
task gatherCoreContentsForJar(type: Copy, dependsOn: getCoreProjects().collect{ it+":compileJava"}) {
description 'Copies contents to temp directory (Core packaging).'
group 'build'
// Project sources
from files(getCoreProjects().collect{ project(it).sourceSets.main.output })
// External libraries
from files(getCoreProjects().collect{ project(it).configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } } )
into tempJarDirectory
}
// Common operations
def jarOps = {
description 'Creates jar with all contents from temp directory.'
group 'build'
archiveName 'tduf.jar'
destinationDir new File('pack/tools/lib/')
from tempJarDirectory
}
def packOps = {
group 'packaging'
destinationDir new File('releases/')
from 'pack/'
}
task fullJar( type: Jar , dependsOn: 'gatherFullContentsForJar' )
fullJar jarOps
task databaseEditorJar( type: Jar , dependsOn: 'gatherDatabaseEditorContentsForJar' )
databaseEditorJar jarOps
task coreJar( type: Jar , dependsOn: 'gatherCoreContentsForJar' )
coreJar jarOps
task packCore(dependsOn: getCoreDependencies(), type: Zip) {
description 'Create single release Zip with CORE components releases directory.'
def targetName = (project.hasProperty('target') && target == LINUX_TARGET) ? 'linux' : 'windows'
archiveName "tduf-core-$project.version-${targetName}.zip"
doLast {
println("(i) Core packaging for target *$targetName*")
}
}
packCore packOps
task packFull(dependsOn: getFullDependencies(), type: Zip) {
description 'Create single release Zip with ALL components except InstallerKit in releases directory.'
def targetName = (project.hasProperty('target') && target == LINUX_TARGET) ? 'linux' : 'windows'
archiveName "tduf-$project.version-${targetName}.zip"
doLast {
println("(i) Full packaging for target *$targetName*")
}
}
packFull packOps
task packDatabaseEditor(dependsOn: getDatabaseEditorDependencies(), type: Zip) {
description 'Zips only DatabaseEditor, LIB files from pack folder.'
def targetName = (project.hasProperty('target') && target == LINUX_TARGET) ? 'linux' : 'windows'
archiveName "tduf-DatabaseEditor-$project.version-${targetName}.zip"
doLast {
println("(i) DatabaseEditor packaging for target *$targetName*")
}
}
packDatabaseEditor packOps
task cleanPackDir(type: Delete) {
description 'Prepares new package by removing all files in pack directory.'
group 'packaging'
delete 'pack/'
}
task cleanTempJarDir(type: Delete) {
description 'Prepares new package by removing all files in tmp-jarContents directory.'
group 'packaging'
delete tempJarDirectory
}
task copyDoc(type: Copy) {
description 'Copies formatted README to release directory.'
group 'packaging'
mustRunAfter 'markdownToHtml'
from "$buildDir/gen-html"
include '*.html'
into 'pack/'
}
task copySharedScripts(type: Copy) {
description 'Copies project-shared scripts to release directory.'
group 'packaging'
mustRunAfter ':cleanPackDir'
if (project.hasProperty('target') && target == LINUX_TARGET) {
from 'src/main/shell/linux/'
include '*.sh'
} else {
from 'src/main/shell/windows/'
include '*.cmd'
}
into 'pack/'
}
task copyUtilScripts(type: Copy) {
description 'Copies support scripts to release/tools/cli directory.'
group 'packaging'
mustRunAfter 'cleanPackDir'
if (project.hasProperty('target') && target == LINUX_TARGET) {
from 'src/main/shell/linux/cli-util/'
include '*.sh'
include 'linux-aliases'
} else {
from 'src/main/shell/windows/cli-util/'
include '*.cmd'
}
into 'pack/tools/cli'
}
task copyExternalTools(type: Copy) {
description 'Copies all external tools to release directory.'
group 'packaging'
mustRunAfter 'cleanPackDir'
from 'tools'
exclude 'readme'
into 'pack/tools'
}
task copyVersionInfo(type: Copy) {
description 'Copies version.info file to release libs directory.'
group 'packaging'
mustRunAfter 'cleanPackDir'
from 'dist/'
include 'version.info'
into 'pack/tools/lib/'
}
task copyIcons(type: Copy) {
description 'Copies common GUI icon to packs/icons directory.'
group 'packaging'
mustRunAfter 'cleanPackDir'
from 'gui-common/src/main/resources/gui-common/img/icons'
include 'TDU-256px.png'
include 'TDU-256px.ico'
into 'pack/icons'
}