chg: name of rhino shell task

This commit is contained in:
Tobi Schäfer 2020-03-18 10:35:49 +01:00
parent e40b78230c
commit b90143adf7

View file

@ -182,9 +182,9 @@ task jsdoc(type: Exec) {
ignoreExitValue true
}
task shell(type: JavaExec) {
def rhinoJar = configurations.library.files.find { f ->
f.name.startsWith('rhino')
task rhinoShell(type: JavaExec) {
def rhinoJar = configurations.library.files.find { jar ->
jar.name.startsWith('rhino')
}
classpath = files(rhinoJar)