https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
b

Big Chungus

11/21/2019, 5:17 PM
Does anyone have an example of setting up gradle to publish MPP lib to bintray with metadata?
s

serebit

11/21/2019, 6:29 PM
https://gitlab.com/serebit/logkat is a project of mine that does that. Of note are
build.gradle.kts
and
buildSrc/src/Extensions.kt
👍 2
m

Michal Harakal

11/21/2019, 7:01 PM
m

msink

11/22/2019, 9:00 AM
I switchd from
com.jfrog.bintray
to
maven-publish
not long ago, see https://github.com/msink/kotlin-libui/commit/3ed479e5f26e6bc71f3e5b338752dbb5ee2160b4
👍 2
b

Big Chungus

11/22/2019, 9:15 AM
@msink, I've applied the changes to mu project, however I cannot figure out how to specify which repo to publish to. Also at the moment my publish task is ALWAYS up to date no matter what
Managed to get it working without bintray plugin. Thanks guys!