Upgrade Gradle to latest version

This commit is contained in:
Tobi Schäfer 2023-08-27 12:06:10 +02:00
parent 94d6b2d1a1
commit a580f08c17
4 changed files with 221 additions and 140 deletions

View file

@ -80,7 +80,7 @@ def rhinoJar = configurations.library.files.find { jar ->
startScripts {
applicationName = 'helma'
classpath = files('../launcher.jar')
mainClassName = 'helma.main.launcher.Main'
mainClass = 'helma.main.launcher.Main'
defaultJvmOpts = [jettyLogLevel, suppressMacosDockIcon]
@ -102,26 +102,28 @@ distributions {
}
}
applicationDistribution.from(projectDir) {
include 'modules/**'
include 'LICENSE.md'
include 'README.md'
include 'start.*'
}
application {
applicationDistribution.from(projectDir) {
include 'modules/**'
include 'LICENSE.md'
include 'README.md'
include 'start.*'
}
applicationDistribution.from(javadoc.destinationDir) {
include '**'
into 'docs/javadoc'
}
applicationDistribution.from(javadoc.destinationDir) {
include '**'
into 'docs/javadoc'
}
applicationDistribution.from("${project.buildDir}/docs/jsdoc") {
include '**'
into 'docs/jsdoc'
}
applicationDistribution.from("${project.buildDir}/docs/jsdoc") {
include '**'
into 'docs/jsdoc'
}
applicationDistribution.from("${project.buildDir}/reports/dependency-license") {
include '**'
into 'licenses'
applicationDistribution.from("${project.buildDir}/reports/dependency-license") {
include '**'
into 'licenses'
}
}
distTar {
@ -234,7 +236,7 @@ task xgettext(type: JavaExec) {
group 'i18n'
classpath = files('launcher.jar')
main = 'helma.main.launcher.Commandline'
mainClass = 'helma.main.launcher.Commandline'
// TODO: Decouple from Antville app
args = [
@ -251,7 +253,7 @@ task po2js(type: JavaExec) {
group 'i18n'
classpath = files(rhinoJar)
main = 'org.mozilla.javascript.tools.shell.Main'
mainClass = 'org.mozilla.javascript.tools.shell.Main'
// TODO: Decouple from Antville app
args = [
@ -266,7 +268,7 @@ task rhinoShell(type: JavaExec) {
group 'Application'
classpath = files(rhinoJar)
main = 'org.mozilla.javascript.tools.shell.Main'
mainClass = 'org.mozilla.javascript.tools.shell.Main'
standardInput = System.in
}
@ -278,6 +280,6 @@ task commandLine(type: JavaExec) {
group 'Application'
classpath = files('launcher.jar')
main = 'helma.main.launcher.Commandline'
mainClass = 'helma.main.launcher.Commandline'
args '-h', projectDir, function
}