summaryrefslogtreecommitdiff
path: root/gradle
diff options
context:
space:
mode:
Diffstat (limited to 'gradle')
-rw-r--r--gradle/integTest.gradle5
1 files changed, 1 insertions, 4 deletions
diff --git a/gradle/integTest.gradle b/gradle/integTest.gradle
index 07b0743..ebf31b7 100644
--- a/gradle/integTest.gradle
+++ b/gradle/integTest.gradle
@@ -14,8 +14,8 @@ task integTest(type: Test) {
shouldRunAfter 'test'
testClassesDir = sourceSets.integTest.output.classesDir
classpath = sourceSets.integTest.runtimeClasspath
-
}
+
check.dependsOn(integTest)
plugins.withType(org.gradle.plugins.ide.idea.IdeaPlugin) {
@@ -30,8 +30,6 @@ plugins.withType(org.gradle.plugins.ide.idea.IdeaPlugin) {
}
-// START SNIPPET test-logic-classpath
-// Write the plugin's classpath to a file to share with the tests
task createClasspathManifest {
def outputDir = file("$buildDir/$name")
@@ -44,7 +42,6 @@ task createClasspathManifest {
}
}
-// Add the classpath file to the test runtime classpath
dependencies {
integTestRuntime files(createClasspathManifest)
} \ No newline at end of file