GT-3062: updated screenshot config to extend test/integrationTest

This commit is contained in:
adamopolous 2019-08-05 13:31:31 -04:00
parent 34bf3b6585
commit 54f61b03c5
5 changed files with 16 additions and 1024 deletions

View file

@ -79,8 +79,8 @@ sourceSets {
screenShots {
java {
srcDir 'src/screen/java'
compileClasspath += main.output
runtimeClasspath += main.output
compileClasspath += main.output + test.output + integrationTest.output
runtimeClasspath += main.output + test.output + integrationTest.output
}
}
pcodeTest {
@ -107,6 +107,7 @@ configurations {
pcodeTestCompile.extendsFrom compile
testArtifacts.extendsFrom testRuntime
integrationTestArtifacts.extendsFrom integrationTestRuntime
screenShotsCompile.extendsFrom integrationTestCompile
}
task testJar(type: Jar) {