diff options
Diffstat (limited to 'runners/gradle-plugin/build.gradle')
-rw-r--r-- | runners/gradle-plugin/build.gradle | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runners/gradle-plugin/build.gradle b/runners/gradle-plugin/build.gradle index 8e6f11df..acf2f822 100644 --- a/runners/gradle-plugin/build.gradle +++ b/runners/gradle-plugin/build.gradle @@ -3,6 +3,7 @@ apply plugin: 'java' sourceCompatibility = 1.6 apply plugin: 'com.github.johnrengelman.shadow' +apply plugin: "com.gradle.plugin-publish" configurations { provided @@ -61,3 +62,17 @@ publishing { bintrayPublication(project, ['dokkaGradlePlugin']) + +pluginBundle { + website = 'http://www.kotlinlang.org/' + vcsUrl = 'https://github.com/kotlin/dokka.git' + description = 'Dokka, the Kotlin documentation tool' + tags = ['dokka', 'kotlin'] + + plugins { + dokkaGradlePlugin { + id = 'org.jetbrains.dokka' + displayName = 'Dokka plugin' + } + } +}
\ No newline at end of file |