mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-5257: Fixing Gradle warnings
This commit is contained in:
parent
eaa2a5c6b3
commit
44fb13b292
36 changed files with 234 additions and 346 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue