anyone have any good examples of simple kotlin/nat...
# kotlin-native
m
anyone have any good examples of simple kotlin/native libraries that are actually being published to maven central?
s
It’s being published to bintray though, not maven central
m
i’m looking for examples of how to actually configure the library’s publications for maven. been messing with it for days to no gain
what actually gets published to bintray? is it the source files or the .klib’s, or something else?
s
For JVM targets, the jar, sources jar, and pon are published. For native targets, the klib, source files, and pom are published
This is with the multiplatform plugin, which autogenerates publications and source jars
k
m
Published to jcenter and using Gradle Kotlin DSL: https://github.com/msink/kotlin-libui/blob/master/libui/build.gradle.kts
m
thanks guys. these are very helpful
s
no problem 😃