mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
GP-1002: Fixing Debugger nodepJar issues.
This commit is contained in:
parent
a3f3f7eb82
commit
26e4999e73
@ -24,37 +24,3 @@ eclipse.project.name = 'Debug AnnotationValidator'
|
||||
dependencies {
|
||||
api project(':ProposedUtils')
|
||||
}
|
||||
|
||||
// no-dep jar for experiments in loading annotation processor into Eclipse
|
||||
def boolean filterJar(File jarfile) {
|
||||
if (jarfile.name.contains("gradle-api")) {
|
||||
return false
|
||||
} else if (jarfile.name.contains("groovy-all")) {
|
||||
return false
|
||||
} else if (jarfile.name.contains("gradle-installation-beacon")) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
task configureNodepJar {
|
||||
doLast {
|
||||
configurations.runtime.files.forEach {
|
||||
if (filterJar(it)) {
|
||||
nodepJar.from(zipTree(it)) {
|
||||
exclude("META-INF/**")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
task nodepJar(type: Jar) {
|
||||
inputs.file(file(jar.archivePath))
|
||||
dependsOn(configureNodepJar)
|
||||
dependsOn(jar)
|
||||
|
||||
appendix = 'nodep'
|
||||
|
||||
from(zipTree(jar.archivePath))
|
||||
}
|
||||
|
@ -53,6 +53,8 @@ jar {
|
||||
}
|
||||
|
||||
task configureNodepJar {
|
||||
dependsOn(configurations.default)
|
||||
|
||||
doLast {
|
||||
configurations.default.files.forEach {
|
||||
if (filterJar(it)) {
|
||||
@ -73,6 +75,11 @@ task nodepJar(type: Jar) {
|
||||
}
|
||||
|
||||
from(zipTree(jar.archivePath))
|
||||
// TODO: This kind of stinks. I could probably apply some judicious excludes
|
||||
// images I don't care.
|
||||
// I probably must include duplicate LICENSE files, so that all are included
|
||||
// IDK why the duplicate OSGi framework classes, but I probably don't care.
|
||||
duplicatesStrategy = 'include'
|
||||
}
|
||||
|
||||
test {
|
||||
|
@ -49,6 +49,7 @@ jar {
|
||||
}
|
||||
|
||||
task configureNodepJar {
|
||||
dependsOn(configurations.default)
|
||||
doLast {
|
||||
configurations.default.files.forEach {
|
||||
if (filterJar(it)) {
|
||||
@ -69,6 +70,11 @@ task nodepJar(type: Jar) {
|
||||
}
|
||||
|
||||
from(zipTree(jar.archivePath))
|
||||
// TODO: This kind of stinks. I could probably apply some judicious excludes
|
||||
// images I don't care.
|
||||
// I probably must include duplicate LICENSE files, so that all are included
|
||||
// IDK why the duplicate OSGi framework classes, but I probably don't care.
|
||||
duplicatesStrategy = 'include'
|
||||
}
|
||||
|
||||
test {
|
||||
|
@ -51,6 +51,7 @@ jar {
|
||||
}
|
||||
|
||||
task configureNodepJar {
|
||||
dependsOn(configurations.default)
|
||||
doLast {
|
||||
configurations.default.files.forEach {
|
||||
if (filterJar(it)) {
|
||||
@ -71,6 +72,11 @@ task nodepJar(type: Jar) {
|
||||
}
|
||||
|
||||
from(zipTree(jar.archivePath))
|
||||
// TODO: This kind of stinks. I could probably apply some judicious excludes
|
||||
// images I don't care.
|
||||
// I probably must include duplicate LICENSE files, so that all are included
|
||||
// IDK why the duplicate OSGi framework classes, but I probably don't care.
|
||||
duplicatesStrategy = 'include'
|
||||
}
|
||||
|
||||
task executableJar {
|
||||
|
Loading…
Reference in New Issue
Block a user