GP-5257: Fixing Gradle warnings

This commit is contained in:
Ryan Kurtz 2025-01-10 13:51:33 -05:00
parent eaa2a5c6b3
commit 44fb13b292
36 changed files with 234 additions and 346 deletions

View file

@ -38,7 +38,7 @@ dependencies {
}
task jythonUnpack(type: Copy) {
description "Unpack Jython Lib"
description = "Unpack Jython Lib"
// Without this, the copyTask will unzip the file to check for "up to date"
onlyIf {
@ -48,15 +48,15 @@ task jythonUnpack(type: Copy) {
from zipTree(configurations.jython.singleFile)
include "Lib/**"
destinationDir file("build/data/${JYTHON_DIR}")
destinationDir = file("build/data/${JYTHON_DIR}")
}
task jythonSrcCopy(type: Copy) {
description "Copy jython-src directory (for Feature Jython)"
description = "Copy jython-src directory (for Feature Jython)"
from(file("jython-src"))
destinationDir file("build/data/jython-src")
destinationDir = file("build/data/jython-src")
}
// Ensure that Jython is usable in development xx