File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -984,9 +984,14 @@ object Build {
984
984
settings(commonStdlibBootstrappedSettings).
985
985
settings(
986
986
scalacOptions += " -Yscala2-stdlib" ,
987
- Compile / scalacOptions ++= {
987
+ Compile / scalacOptions ++= {
988
988
Seq (" -sourcepath" , ((Compile / sourceManaged).value / " scala-library-src" ).toString)
989
989
},
990
+ Compile / exportJars := true ,
991
+ Compile / packageBin / mappings ~= { _.filter(_._2.endsWith(" .tasty" )) },
992
+ Compile / packageBin / artifactName := { (version, module, artifact) =>
993
+ s " ${module.name}- ${stdlibVersion(Bootstrapped )}- ${version.full}.jar "
994
+ },
990
995
mimaCheckDirection := " both" ,
991
996
mimaBackwardIssueFilters := MiMaFilters .StdlibBootstrappedBackwards ,
992
997
mimaForwardIssueFilters := MiMaFilters .StdlibBootstrappedForward ,
You can’t perform that action at this time.
0 commit comments