Hey! I've been trying to publish my library to mav...
# multiplatform
i
Hey! I've been trying to publish my library to maven central, but I keep getting this error. Any help would be greatly appreciated!
p
Workaround for gradle issue: https://youtrack.jetbrains.com/issue/KT-46466
Copy code
val signingTasks = tasks.withType<Sign>()
tasks.withType<AbstractPublishToMaven>().configureEach {
    dependsOn(signingTasks)
}
1
i
Thanks a lot man, it's working now
👍 1