[2.x] fix: Add regression test (#9246)

This commit is contained in:
Anatolii Kmetiuk 2026-05-19 23:57:23 +09:00 committed by GitHub
parent 3eeac9deae
commit 696626e195
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -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",
)