aboutsummaryrefslogtreecommitdiff
path: root/runners/gradle-plugin/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'runners/gradle-plugin/build.gradle')
-rw-r--r--runners/gradle-plugin/build.gradle9
1 files changed, 2 insertions, 7 deletions
diff --git a/runners/gradle-plugin/build.gradle b/runners/gradle-plugin/build.gradle
index 1848570a..7b859908 100644
--- a/runners/gradle-plugin/build.gradle
+++ b/runners/gradle-plugin/build.gradle
@@ -6,12 +6,7 @@ sourceCompatibility = 1.8
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: "com.gradle.plugin-publish"
-configurations {
- provided
-}
-
tasks.withType(AbstractCompile) {
- classpath += configurations.provided
classpath += configurations.shadow
}
@@ -23,8 +18,8 @@ dependencies {
compile project(":integration")
- provided gradleApi()
- provided localGroovy()
+ compileOnly gradleApi()
+ compileOnly localGroovy()
}
task sourceJar(type: Jar) {