We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a484de commit 49f3ab7Copy full SHA for 49f3ab7
tests/pos/i16351/App.scala renamed to sbt-test/scala2-compat/i16351/app/App.scala
sbt-test/scala2-compat/i16351/build.sbt
@@ -0,0 +1,13 @@
1
+val scala3Version = sys.props("plugin.scalaVersion")
2
+val scala2Version = sys.props("plugin.scala2Version")
3
+
4
+lazy val lib = project.in(file("lib"))
5
+ .settings(
6
+ scalaVersion := scala2Version
7
+ )
8
9
+lazy val app = project.in(file("app"))
10
+ .dependsOn(lib)
11
12
+ scalaVersion := scala3Version
13
tests/pos/i16351/lib.scala renamed to sbt-test/scala2-compat/i16351/lib/lib.scala
sbt-test/scala2-compat/i16351/test
@@ -0,0 +1 @@
+> app/run
0 commit comments