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 64ea359 commit 52bf33eCopy full SHA for 52bf33e
project/Build.scala
@@ -984,9 +984,13 @@ object Build {
984
settings(commonStdlibBootstrappedSettings).
985
settings(
986
scalacOptions += "-Yscala2-stdlib",
987
- Compile/scalacOptions ++= {
+ Compile / scalacOptions ++= {
988
Seq("-sourcepath", ((Compile/sourceManaged).value / "scala-library-src").toString)
989
},
990
+ // TODO package only TASTy files.
991
+ // We first need to check that a project can depend on a JAR that only contains TASTy files.
992
+ // Compile / exportJars := true,
993
+ // Compile / packageBin / mappings ~= { _.filter(_._2.endsWith(".tasty")) },
994
mimaCheckDirection := "both",
995
mimaBackwardIssueFilters := MiMaFilters.StdlibBootstrappedBackwards,
996
mimaForwardIssueFilters := MiMaFilters.StdlibBootstrappedForward,
0 commit comments