Update jvm-sandwich

This commit is contained in:
Eugene Yokota 2026-07-18 09:32:47 -04:00
parent e25c0af312
commit 33269898e3
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ lazy val bazApp = (projectMatrix in file("baz-app"))
name := "baz app",
check := {
val cp = (Compile / fullClasspath).value.map(_.data.id)
assert(cp.exists(_.endsWith("baz-core_2.13-0.1.0-SNAPSHOT.jar")), cp)
assert(!cp.exists(_.endsWith("baz-core_3.0.0-M1-0.1.0-SNAPSHOT.jar")), cp)
assert(cp.exists(_.endsWith("baz-core_2.13.jar")), cp)
assert(!cp.exists(_.endsWith("baz-core_3.0.0-M1.jar")), cp)
assert(projectMatrixBaseDirectory.value == (ThisBuild / baseDirectory).value / "baz-app",
s"projectMatrixBaseDirectory is ${projectMatrixBaseDirectory.value}")
},