mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-3977: Fix dependency resolution for nodepJar in Gradle 8.
This commit is contained in:
parent
0fb2014df1
commit
6027413820
1 changed files with 2 additions and 2 deletions
|
@ -25,9 +25,9 @@ def boolean filterJar(File jarfile) {
|
||||||
}
|
}
|
||||||
|
|
||||||
task configureNodepJar {
|
task configureNodepJar {
|
||||||
dependsOn(configurations.default)
|
dependsOn(configurations.runtimeClasspath)
|
||||||
doLast {
|
doLast {
|
||||||
configurations.default.files.forEach { jar ->
|
configurations.runtimeClasspath.files.forEach { jar ->
|
||||||
if (filterJar(jar)) {
|
if (filterJar(jar)) {
|
||||||
nodepJar.from(zipTree(jar)) {
|
nodepJar.from(zipTree(jar)) {
|
||||||
// The real solution here is probably to sort out the dependency graph
|
// The real solution here is probably to sort out the dependency graph
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue