mirror of
https://github.com/MinimalBible/jsword-minimalbible
synced 2025-01-25 07:10:11 -05:00
6bef7e78f6
This reverts commit 68a3824a59
.
20 lines
446 B
Groovy
20 lines
446 B
Groovy
configurations {
|
|
buildJSword
|
|
}
|
|
|
|
task compileJava (type: GradleBuild) {
|
|
buildFile = 'jsword-stub.gradle'
|
|
tasks = ['clean', 'ivy.check', 'ivy.download', 'ivy.task', 'ivy',
|
|
'init', 'mergeCode', 'compile', 'jar'] //, 'copyJarsToMinimalBible']
|
|
ext.outputJar = file('distribution/jsword.jar')
|
|
outputs.upToDateWhen {
|
|
ext.outputJar.exists()
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
buildJSword(compileJava.ext.outputJar) {
|
|
builtBy compileJava
|
|
}
|
|
}
|