@@ -1799,6 +1799,12 @@ object Build {
17991799 Test / publishArtifact := false ,
18001800 publish / skip := false ,
18011801 libraryDependencies ++= Seq (
1802+ " org.jline" % " jline-reader" % " 3.29.0" ,
1803+ " org.jline" % " jline-terminal" % " 3.29.0" ,
1804+ " org.jline" % " jline-terminal-jni" % " 3.29.0" ,
1805+ " com.lihaoyi" %% " pprint" % " 0.9.3" ,
1806+ " com.lihaoyi" %% " fansi" % " 0.5.1" ,
1807+ " com.lihaoyi" %% " sourcecode" % " 0.4.4" ,
18021808 " com.github.sbt" % " junit-interface" % " 0.13.3" % Test ,
18031809 ),
18041810 // Configure to use the non-bootstrapped compiler
@@ -2416,9 +2422,6 @@ object Build {
24162422 " com.github.sbt" % " junit-interface" % " 0.13.3" % Test ,
24172423 " org.scala-lang.modules" % " scala-asm" % " 9.8.0-scala-1" ,
24182424 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" ,
24222425 (" io.get-coursier" %% " coursier" % " 2.0.16" % Test ).cross(CrossVersion .for3Use2_13),
24232426 ),
24242427 // NOTE: The only difference here is that we drop `-Werror` and semanticDB for now
@@ -2462,7 +2465,6 @@ object Build {
24622465
24632466 Seq (file)
24642467 }.taskValue,
2465- (Compile / sourceGenerators) += ShadedSourceGenerator .task.taskValue,
24662468 // sbt adds all the projects to scala-tool config which breaks building the scalaInstance
24672469 // as a workaround, I build it manually by only adding the compiler
24682470 managedScalaInstance := false ,
@@ -2589,9 +2591,6 @@ object Build {
25892591 libraryDependencies ++= Seq (
25902592 " org.scala-lang.modules" % " scala-asm" % " 9.8.0-scala-1" ,
25912593 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" ,
25952594 " com.github.sbt" % " junit-interface" % " 0.13.3" % Test ,
25962595 (" io.get-coursier" %% " coursier" % " 2.0.16" % Test ).cross(CrossVersion .for3Use2_13),
25972596 ),
@@ -2704,7 +2703,6 @@ object Build {
27042703 sjsSources
27052704 } (Set (scalaJSIRSourcesJar)).toSeq
27062705 }.taskValue,
2707- (Compile / sourceGenerators) += ShadedSourceGenerator .task.taskValue,
27082706 Compile / run / forkOptions := (Compile / run / forkOptions).value
27092707 .withWorkingDirectory((ThisBuild / baseDirectory).value),
27102708 // Configuration of the test suite
0 commit comments