From 42e9650b57f6880c913bf7003c6097d00939368a Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 5 Nov 2015 20:41:11 +0100 Subject: bintray upload work in progress --- dokka-gradle-plugin/build.gradle | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'dokka-gradle-plugin') 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'] +} -- cgit