mirror of https://github.com/sbt/sbt.git
Add scripted scala3-compiler-bridge-binary
This commit is contained in:
parent
28ad11b07f
commit
ccb63e9eaa
|
|
@ -0,0 +1 @@
|
|||
val A = "A"
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
ThisBuild / scalaVersion := "3.0.0-M2"
|
||||
|
||||
lazy val check = taskKey[Unit]("")
|
||||
|
||||
check := {
|
||||
val bridge = scalaCompilerBridgeBinaryJar.value
|
||||
bridge.getOrElse(sys.error(s"bridge JAR is missing"))
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
> check
|
||||
> compile
|
||||
Loading…
Reference in New Issue