From b564c363595e59285c94c479ce5ed1891150aef9 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 13 Jan 2020 23:23:13 +0600 Subject: [PATCH] update publish gradle --- publish.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/publish.gradle b/publish.gradle index 23bd45f..4a031eb 100644 --- a/publish.gradle +++ b/publish.gradle @@ -45,8 +45,12 @@ bintray { bintrayUpload.doFirst { publications = publishing.publications.collect { - it.name - } + if (it.name.contains('kotlinMultiplatform')) { + null + } else { + it.name + } + } - null } bintrayUpload.dependsOn publishToMavenLocal \ No newline at end of file