@@ -727,8 +727,6 @@ object Build {
727727        (" io.get-coursier" %%  " coursier" %  " 2.0.16" %  Test ).cross(CrossVersion .for3Use2_13),
728728      ),
729729
730-       (Compile  /  sourceGenerators) +=  ShadedSourceGenerator .task.taskValue,
731- 
732730      //  For convenience, change the baseDirectory when running the compiler
733731      Compile  /  forkOptions :=  (Compile  /  forkOptions).value.withWorkingDirectory((ThisBuild  /  baseDirectory).value),
734732      Compile  /  run /  forkOptions :=  (Compile  /  run /  forkOptions).value.withWorkingDirectory((ThisBuild  /  baseDirectory).value),
@@ -1799,6 +1797,12 @@ object Build {
17991797      Test     /  publishArtifact :=  false ,
18001798      publish /  skip :=  false ,
18011799      libraryDependencies ++=  Seq (
1800+         " org.jline" %  " jline-reader" %  " 3.29.0" 
1801+         " org.jline" %  " jline-terminal" %  " 3.29.0" 
1802+         " org.jline" %  " jline-terminal-jni" %  " 3.29.0" 
1803+         " com.lihaoyi" %%  " pprint" %  " 0.9.3" 
1804+         " com.lihaoyi" %%  " fansi" %  " 0.5.1" 
1805+         " com.lihaoyi" %%  " sourcecode" %  " 0.4.4" 
18021806        " com.github.sbt" %  " junit-interface" %  " 0.13.3" %  Test ,
18031807      ),
18041808      //  Configure to use the non-bootstrapped compiler
@@ -2416,9 +2420,6 @@ object Build {
24162420        " com.github.sbt" %  " junit-interface" %  " 0.13.3" %  Test ,
24172421        " org.scala-lang.modules" %  " scala-asm" %  " 9.8.0-scala-1" 
24182422        Dependencies .compilerInterface,
2419-         " org.jline" %  " jline-reader" %  " 3.29.0" 
2420-         " org.jline" %  " jline-terminal" %  " 3.29.0" 
2421-         " org.jline" %  " jline-terminal-jni" %  " 3.29.0" 
24222423        (" io.get-coursier" %%  " coursier" %  " 2.0.16" %  Test ).cross(CrossVersion .for3Use2_13),
24232424      ),
24242425      //  NOTE: The only difference here is that we drop `-Werror` and semanticDB for now
@@ -2462,7 +2463,6 @@ object Build {
24622463
24632464        Seq (file)
24642465      }.taskValue,
2465-       (Compile  /  sourceGenerators) +=  ShadedSourceGenerator .task.taskValue,
24662466      //  sbt adds all the projects to scala-tool config which breaks building the scalaInstance
24672467      //  as a workaround, I build it manually by only adding the compiler
24682468      managedScalaInstance :=  false ,
@@ -2589,9 +2589,6 @@ object Build {
25892589      libraryDependencies ++=  Seq (
25902590        " org.scala-lang.modules" %  " scala-asm" %  " 9.8.0-scala-1" 
25912591        Dependencies .compilerInterface,
2592-         " org.jline" %  " jline-reader" %  " 3.29.0" 
2593-         " org.jline" %  " jline-terminal" %  " 3.29.0" 
2594-         " org.jline" %  " jline-terminal-jni" %  " 3.29.0" 
25952592        " com.github.sbt" %  " junit-interface" %  " 0.13.3" %  Test ,
25962593        (" io.get-coursier" %%  " coursier" %  " 2.0.16" %  Test ).cross(CrossVersion .for3Use2_13),
25972594      ),
@@ -2704,7 +2701,6 @@ object Build {
27042701          sjsSources
27052702        } (Set (scalaJSIRSourcesJar)).toSeq
27062703      }.taskValue,
2707-       (Compile  /  sourceGenerators) +=  ShadedSourceGenerator .task.taskValue,
27082704      Compile  /  run /  forkOptions :=  (Compile  /  run /  forkOptions).value
27092705        .withWorkingDirectory((ThisBuild  /  baseDirectory).value),
27102706      //  Configuration of the test suite
0 commit comments