mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Removed configuration in doFirst from utilityJar to prevent skipped task.
This commit is contained in:
parent
a0354a9746
commit
2e9462b81f
1 changed files with 7 additions and 4 deletions
|
@ -51,11 +51,14 @@ File pyDevDestDir = file("build/data/buildDependencies/pydev")
|
|||
File cdtDestDir = file("build/data/buildDependencies/cdt")
|
||||
|
||||
task utilityJar(type:Copy) {
|
||||
doFirst {
|
||||
from (project(':Utility').jar)
|
||||
}
|
||||
|
||||
destinationDir libraryJarDestDir
|
||||
|
||||
// Explicitly add output from Utility:jar task.
|
||||
// Using "project(':Utility').jar" will not compile here, and
|
||||
// adding configuration in doFirst would result in task always
|
||||
// up-to-date.
|
||||
from tasks.getByPath(':Utility:jar').outputs
|
||||
into destinationDir
|
||||
}
|
||||
|
||||
task launchSupportJar(type:Copy) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue