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 309b54b commit ad24812Copy full SHA for ad24812
community-build/src/scala/dotty/communitybuild/projects.scala
@@ -510,8 +510,10 @@ object projects:
510
511
lazy val scalaJava8Compat = SbtCommunityProject(
512
project = "scala-java8-compat",
513
- sbtTestCommand = "test",
514
- sbtPublishCommand = "publishLocal",
+ // the fnGen subproject must be built with 2.12.x
+ sbtTestCommand = s"++2.12.14; ++$compilerVersion; set fnGen/dependencyOverrides := Nil; test",
515
+ sbtPublishCommand = s"++2.12.14; ++$compilerVersion; set fnGen/dependencyOverrides := Nil; publishLocal",
516
+ scalacOptions = Nil // avoid passing Scala 3 options to Scala 2.12 in fnGen subproject
517
)
518
519
lazy val verify = SbtCommunityProject(
0 commit comments