diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-10-08 23:23:23 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-10-08 23:59:18 +0300 |
commit | 206829dfac31505f078f1c114785c550f2135742 (patch) | |
tree | 7e11935d2183364e4317ab4ad5aa10bbbfab0d32 /runners/android-gradle-plugin | |
parent | 459e17a397bf669357075fd9fe319c564fc45a59 (diff) | |
download | dokka-206829dfac31505f078f1c114785c550f2135742.tar.gz dokka-206829dfac31505f078f1c114785c550f2135742.tar.bz2 dokka-206829dfac31505f078f1c114785c550f2135742.zip |
Replace provided configuration with compileOnly
Diffstat (limited to 'runners/android-gradle-plugin')
-rw-r--r-- | runners/android-gradle-plugin/build.gradle | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/runners/android-gradle-plugin/build.gradle b/runners/android-gradle-plugin/build.gradle index 7c2eaa14..68152475 100644 --- a/runners/android-gradle-plugin/build.gradle +++ b/runners/android-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 } @@ -25,8 +20,8 @@ dependencies { shadow project(path: ':runners:gradle-plugin', configuration: 'shadow') compileOnly project(':integration') - provided gradleApi() - provided localGroovy() + compileOnly gradleApi() + compileOnly localGroovy() } task sourceJar(type: Jar) { |