Merge remote-tracking branch 'origin/GP-849_ryanmkurtz_gradle7'

This commit is contained in:
ghidra1 2021-05-14 10:52:37 -04:00
commit 15d22e8164
84 changed files with 324 additions and 290 deletions

View file

@ -23,9 +23,12 @@ apply plugin: 'eclipse'
eclipse.project.name = 'Debug Debugger-agent-dbgmodel'
dependencies {
compile project(":Debugger-agent-dbgeng")
api project(":Debugger-agent-dbgeng")
testCompile project(path: ":Debugger-agent-dbgeng", configuration: 'testArtifacts')
testImplementation project(path: ":Debugger-agent-dbgeng", configuration: 'testArtifacts')
testImplementation project(path: ':Framework-AsyncComm', configuration: 'testArtifacts')
testImplementation project(path: ':Framework-Debugging', configuration: 'testArtifacts')
testImplementation project(path: ":Debugger-gadp", configuration: 'testArtifacts')
}
def boolean filterJar(File jarfile) {
@ -47,7 +50,7 @@ jar {
task configureNodepJar {
doLast {
configurations.runtime.files.forEach {
configurations.runtimeOnly.files.forEach {
if (filterJar(it)) {
nodepJar.from(zipTree(it))
}