From fcac60e0205340ed303ee58781e2d697e5630b90 Mon Sep 17 00:00:00 2001 From: Rene Groeschke Date: Mon, 14 Dec 2015 22:55:00 +0100 Subject: minor cleanup on integTest.gradle --- gradle/integTest.gradle | 5 +---- 1 file changed, 1 insertion(+), 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 -- cgit