From f8246d9e65f37ca64c136479d430abc8446aed98 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Wed, 14 Dec 2016 17:19:39 +0300 Subject: Manual integration of PR #93 --- runners/gradle-plugin/build.gradle | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'runners/gradle-plugin/build.gradle') 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 -- cgit