We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e208b2 commit c605d96Copy full SHA for c605d96
buildSrc/src/main/java/Publication.kt
@@ -16,6 +16,14 @@ fun DistributionContainer.configureForMultiplatform(project: Project) {
16
from("build${sep}publications${sep}kotlinMultiplatform") {
17
renameModule(project.name, version = version)
18
}
19
+ // The current Kotlin version doesn't generate this *-all.jar anymore.
20
+ // This is a placeholder for backwards compatibility with craft until we fix it there directly.
21
+ from("build${sep}libs") {
22
+ include("${project.name}-$version")
23
+ rename {
24
+ it.replace("$version", "$version-all")
25
+ }
26
27
from("build${sep}kotlinToolingMetadata") {
28
rename {
29
it.replace("kotlin-tooling-metadata.json", "${project.name}-$version-kotlin-tooling-metadata.json")
0 commit comments