diff options
author | Rene Groeschke <rene@gradle.com> | 2015-12-14 22:55:00 +0100 |
---|---|---|
committer | Rene Groeschke <rene@gradle.com> | 2015-12-14 22:55:00 +0100 |
commit | fcac60e0205340ed303ee58781e2d697e5630b90 (patch) | |
tree | 640ef750b7408749fd7b99c3544cd2d34b6645ea | |
parent | dd954e14c06f7568a6009b303a50c50a4e2216cf (diff) | |
download | frege-gradle-plugin-fcac60e0205340ed303ee58781e2d697e5630b90.tar.gz frege-gradle-plugin-fcac60e0205340ed303ee58781e2d697e5630b90.tar.bz2 frege-gradle-plugin-fcac60e0205340ed303ee58781e2d697e5630b90.zip |
minor cleanup on integTest.gradle
-rw-r--r-- | gradle/integTest.gradle | 5 |
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 |