gradle: Fix compile classpath for scripts sourceSet

This commit is contained in:
Eric Kilmer 2023-02-12 13:40:07 -05:00
parent 601ab94c1f
commit dc9c6724e1
No known key found for this signature in database
GPG Key ID: 504CA431CF70054B

View File

@ -123,6 +123,7 @@ sourceSets {
java {
srcDir 'developer_scripts'
srcDir 'ghidra_scripts'
compileClasspath += main.output
}
}
}
@ -131,6 +132,7 @@ configurations {
integrationTestImplementation.extendsFrom testImplementation
integrationTestRuntimeOnly.extendsFrom testRuntimeOnly, integrationTestImplementation
pcodeTestImplementation.extendsFrom implementation
scriptsImplementation.extendsFrom implementation
testArtifacts.extendsFrom testRuntimeOnly
integrationTestArtifacts.extendsFrom integrationTestRuntimeOnly
screenShotsImplementation.extendsFrom integrationTestImplementation