summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Groeschke <rene@gradle.com>2015-12-14 22:55:00 +0100
committerRene Groeschke <rene@gradle.com>2015-12-14 22:55:00 +0100
commitfcac60e0205340ed303ee58781e2d697e5630b90 (patch)
tree640ef750b7408749fd7b99c3544cd2d34b6645ea
parentdd954e14c06f7568a6009b303a50c50a4e2216cf (diff)
downloadfrege-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.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