Skip to content

Commit

Permalink
set OS name and architecture as archive classifier for JVM artifacts (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kropp authored Nov 7, 2023
1 parent 4217f64 commit 748b004
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skiko/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,8 @@ fun skikoJvmRuntimeJarTask(
) = project.registerSkikoTask<Jar>("skikoJvmRuntimeJar", targetOs, targetArch) {
dependsOn(awtJar)
val target = targetId(targetOs, targetArch)
archiveBaseName.set("skiko-$target")
archiveBaseName.set("skiko")
archiveClassifier.set(target)
nativeFiles.forEach { provider -> from(provider) }
}

Expand Down

0 comments on commit 748b004

Please sign in to comment.