From c8d1bba76620dc7cc014a928cd370bde5a61a12b Mon Sep 17 00:00:00 2001 From: Taylor Smock Date: Mon, 1 Jun 2020 13:22:32 -0600 Subject: [PATCH] Add compile/runtime paths for integration tests Signed-off-by: Taylor Smock --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 50f228a..d76a426 100644 --- a/build.gradle +++ b/build.gradle @@ -60,6 +60,10 @@ sourceSets { } } intTest { + compileClasspath += sourceSets.main.output + compileClasspath += sourceSets.test.output + runtimeClasspath += sourceSets.main.output + runtimeClasspath += sourceSets.test.output java { srcDirs = ["test/integration"] } @@ -100,8 +104,8 @@ dependencies { } configurations { - intTestImplementation.extendsFrom testImplementation intTestRuntimeOnly.extendsFrom testRuntimeOnly + intTestImplementation.extendsFrom testImplementation } // Add dependencies from ivy.xml