Have encountered a strange issue when building a J...
# multiplatform
n
Have encountered a strange issue when building a JAR for a Common lib via Gradle. Every time the JAR is created it only contains the manifest file.
Found a workaround: Get the jar task and set the baseName property, eg:
Copy code
val jar by tasks.getting(Jar::class) {
    baseName = moduleName
}
Should a bin JAR for a Common module only contain a manifest, and kotlin_metadata files?