mirror of https://github.com/sbt/sbt.git
[2.x] fix: Add regression test (#9246)
This commit is contained in:
parent
afac251f28
commit
46e10f0b33
|
|
@ -0,0 +1,13 @@
|
|||
lazy val compilerPlugin = project
|
||||
.in(file("scala-compiler-plugin"))
|
||||
.settings(
|
||||
platform := Platform.jvm,
|
||||
crossVersion := CrossVersion.full,
|
||||
)
|
||||
|
||||
lazy val platformLib = project
|
||||
.in(file("platform-lib"))
|
||||
.dependsOn(compilerPlugin % "plugin")
|
||||
.settings(
|
||||
platform := "custom",
|
||||
)
|
||||
|
|
@ -0,0 +1 @@
|
|||
> update
|
||||
Loading…
Reference in New Issue