Skip to content

Commit

Permalink
Re-include metadata jar for dsl and runtime (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
raniejade authored May 21, 2022
1 parent 6f147a1 commit 04a479e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spek-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ val stubJavaDocJar by tasks.registering(Jar::class) {
}

project.extra["artifacts"] = when (currentOS) {
OS.LINUX -> arrayOf("kotlinMultiplatform", "jvm", "js", "linux")
OS.LINUX -> arrayOf("kotlinMultiplatform", "jvm", "js", "linux", "metadata")
OS.WINDOWS -> arrayOf("windows")
OS.MACOS -> arrayOf("macos")
}
Expand Down
2 changes: 1 addition & 1 deletion spek-runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ val stubJavaDocJar by tasks.registering(Jar::class) {
}

project.extra["artifacts"] = when (currentOS) {
OS.LINUX -> arrayOf("kotlinMultiplatform", "jvm", "js", "linux")
OS.LINUX -> arrayOf("kotlinMultiplatform", "jvm", "js", "linux", "metadata")
OS.WINDOWS -> arrayOf("windows")
OS.MACOS -> arrayOf("macos")
}
Expand Down

0 comments on commit 04a479e

Please sign in to comment.