diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-12-14 18:36:59 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-12-14 18:36:59 +0300 |
commit | 06407b72685cc2a5fdd0ff42bca2e0eb206a99fd (patch) | |
tree | 1ef85011b5d1f7d0220d400a3f41526b41dd5976 /runners/gradle-plugin | |
parent | 51f984c6249213dd11efd7a95a7f143442b544bd (diff) | |
download | dokka-06407b72685cc2a5fdd0ff42bca2e0eb206a99fd.tar.gz dokka-06407b72685cc2a5fdd0ff42bca2e0eb206a99fd.tar.bz2 dokka-06407b72685cc2a5fdd0ff42bca2e0eb206a99fd.zip |
Workaround #127
Diffstat (limited to 'runners/gradle-plugin')
-rw-r--r-- | runners/gradle-plugin/build.gradle | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runners/gradle-plugin/build.gradle b/runners/gradle-plugin/build.gradle index acf2f822..b9757ddb 100644 --- a/runners/gradle-plugin/build.gradle +++ b/runners/gradle-plugin/build.gradle @@ -62,12 +62,16 @@ publishing { bintrayPublication(project, ['dokkaGradlePlugin']) +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'] + tags = ['dokka', 'kotlin', 'kdoc'] plugins { dokkaGradlePlugin { @@ -75,4 +79,8 @@ pluginBundle { displayName = 'Dokka plugin' } } + + mavenCoordinates { + groupId = "org.jetbrains.dokka" + } }
\ No newline at end of file |