aboutsummaryrefslogtreecommitdiff
path: root/dokka-gradle-plugin
diff options
context:
space:
mode:
Diffstat (limited to 'dokka-gradle-plugin')
-rw-r--r--dokka-gradle-plugin/build.gradle20
1 files changed, 20 insertions, 0 deletions
diff --git a/dokka-gradle-plugin/build.gradle b/dokka-gradle-plugin/build.gradle
index 8765e34d..768079be 100644
--- a/dokka-gradle-plugin/build.gradle
+++ b/dokka-gradle-plugin/build.gradle
@@ -16,6 +16,7 @@ buildscript {
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'maven-publish'
+apply plugin: 'com.jfrog.bintray'
sourceCompatibility = 1.6
@@ -59,3 +60,22 @@ publishing {
}
}
}
+
+bintray {
+ user = System.getenv('BINTRAY_USER')
+ key = System.getenv('BINTRAY_KEY')
+
+ pkg {
+ repo = 'dokka'
+ name = 'dokka'
+ userOrg = 'jetbrains'
+ desc = 'Dokka, the Kotlin documentation tool'
+ vcsUrl = 'https://github.com/kotlin/dokka.git'
+ licenses = ['Apache-2.0']
+ version {
+ name = dokka_version
+ }
+ }
+
+ publications = ['mavenJava']
+}