diff --git a/Ghidra/Features/FileFormats/build.gradle b/Ghidra/Features/FileFormats/build.gradle index 0a2e7da1a3..da10a3fbe8 100644 --- a/Ghidra/Features/FileFormats/build.gradle +++ b/Ghidra/Features/FileFormats/build.gradle @@ -33,5 +33,5 @@ dependencies { helpPath project(path: ":Base", configuration: 'helpPath') // include code from src/test/slow in Base - testCompile project(':Base').sourceSets.integrationTest.output + testCompile project(path: ':Base', configuration: 'integrationTestArtifacts') } diff --git a/Ghidra/Framework/Project/build.gradle b/Ghidra/Framework/Project/build.gradle index a317aa2806..b66c2615e5 100644 --- a/Ghidra/Framework/Project/build.gradle +++ b/Ghidra/Framework/Project/build.gradle @@ -13,7 +13,7 @@ dependencies { compile project(':FileSystem') compile project(':Utility') - testCompile project(':Generic').sourceSets.test.output + testCompile project(path: ':Generic', configuration: 'testArtifacts') compile "org.apache.commons:commons-compress:1.18" } diff --git a/Ghidra/Test/IntegrationTest/build.gradle b/Ghidra/Test/IntegrationTest/build.gradle index a207fca51f..f962f11fc3 100644 --- a/Ghidra/Test/IntegrationTest/build.gradle +++ b/Ghidra/Test/IntegrationTest/build.gradle @@ -28,7 +28,7 @@ dependencies { // some tests use classes in Base/src/test and test.slow - testCompile project(':Base').sourceSets.test.output + testCompile project(path: ':Base', configuration: 'testArtifacts') } // For Java 9, we must explicitly export references to the internal classes we are using.