aboutsummaryrefslogtreecommitdiff
path: root/runners/android-gradle-plugin/build.gradle
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2016-12-14 18:36:59 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2016-12-14 18:36:59 +0300
commit06407b72685cc2a5fdd0ff42bca2e0eb206a99fd (patch)
tree1ef85011b5d1f7d0220d400a3f41526b41dd5976 /runners/android-gradle-plugin/build.gradle
parent51f984c6249213dd11efd7a95a7f143442b544bd (diff)
downloaddokka-06407b72685cc2a5fdd0ff42bca2e0eb206a99fd.tar.gz
dokka-06407b72685cc2a5fdd0ff42bca2e0eb206a99fd.tar.bz2
dokka-06407b72685cc2a5fdd0ff42bca2e0eb206a99fd.zip
Workaround #127
Diffstat (limited to 'runners/android-gradle-plugin/build.gradle')
-rw-r--r--runners/android-gradle-plugin/build.gradle10
1 files changed, 9 insertions, 1 deletions
diff --git a/runners/android-gradle-plugin/build.gradle b/runners/android-gradle-plugin/build.gradle
index 38f4f561..55bce3f4 100644
--- a/runners/android-gradle-plugin/build.gradle
+++ b/runners/android-gradle-plugin/build.gradle
@@ -55,12 +55,16 @@ publishing {
bintrayPublication(project, ['dokkaAndroidGradlePlugin'])
+configurations.archives.artifacts.clear()
+artifacts {
+ archives shadowJar
+}
pluginBundle {
website = 'http://www.kotlinlang.org/'
vcsUrl = 'https://github.com/kotlin/dokka.git'
description = 'Dokka, the Kotlin documentation tool'
- tags = ['dokka', 'kotlin', 'android']
+ tags = ['dokka', 'kotlin', 'kdoc', 'android']
plugins {
dokkaAndroidGradlePlugin {
@@ -68,4 +72,8 @@ pluginBundle {
displayName = 'Dokka Android plugin'
}
}
+
+ mavenCoordinates {
+ groupId = "org.jetbrains.dokka"
+ }
} \ No newline at end of file