How can I rename the published artifacts of a kotlin multiplatform library?
i.e. I want to rename from:
implementation("org.nexa:libnexakotlin:0.0.1")
to
implementation("org.nexa:libnexa-kotlin:0.0.1")
I’m afraid that I have to rename the gradle module of the library, which would cause a huge diff and a massive refactor and I want to avoid that
The library is complex and has several targets: mac, ios, jvm and android
The library is open source: https://gitlab.com/nexa/libnexakotlin