Skip to content

Commit

Permalink
move scala 2 test to sbt-test
Browse files Browse the repository at this point in the history
  • Loading branch information
bishabosha committed Nov 17, 2022
1 parent 1a484de commit 49f3ab7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
File renamed without changes.
13 changes: 13 additions & 0 deletions sbt-test/scala2-compat/i16351/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
val scala3Version = sys.props("plugin.scalaVersion")
val scala2Version = sys.props("plugin.scala2Version")

lazy val lib = project.in(file("lib"))
.settings(
scalaVersion := scala2Version
)

lazy val app = project.in(file("app"))
.dependsOn(lib)
.settings(
scalaVersion := scala3Version
)
File renamed without changes.
1 change: 1 addition & 0 deletions sbt-test/scala2-compat/i16351/test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
> app/run

0 comments on commit 49f3ab7

Please sign in to comment.