From 949fc353d8a9ed5d00b7150f660862951f39b10e Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Wed, 6 Jan 2016 23:25:00 +0400 Subject: [PATCH] Doc. --- .../kotlin/com/beust/kobalt/plugin/publish/PublishPlugin.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/beust/kobalt/plugin/publish/PublishPlugin.kt b/src/main/kotlin/com/beust/kobalt/plugin/publish/PublishPlugin.kt index 929dc79f..5178469c 100644 --- a/src/main/kotlin/com/beust/kobalt/plugin/publish/PublishPlugin.kt +++ b/src/main/kotlin/com/beust/kobalt/plugin/publish/PublishPlugin.kt @@ -162,8 +162,9 @@ public fun Project.github(init: GithubConfig.() -> Unit) { data class JCenterConfig(val project: Project) { /** - * If true, publish the files to JCenter. If false, the uploaded files will be available only in your - * personal bintray maven space + * If true, the uploaded file will be published in your personal space (e.g. https://dl.bintray.com/cbeust/maven). + * Once the file is uploaded there, it can be automatically synchronized to JCenter by linking your project to + * JCenter on the bintray web site. By default, files are not published. */ @Directive var publish: Boolean = false