File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -596,9 +596,6 @@ object Build {
596
596
libraryDependencies ++= Seq (
597
597
" org.scala-lang.modules" % " scala-asm" % " 9.5.0-scala-1" , // used by the backend
598
598
Dependencies .compilerInterface,
599
- " org.jline" % " jline-reader" % " 3.19.0" , // used by the REPL
600
- " org.jline" % " jline-terminal" % " 3.19.0" ,
601
- " org.jline" % " jline-terminal-jna" % " 3.19.0" , // needed for Windows
602
599
(" io.get-coursier" %% " coursier" % " 2.0.16" % Test ).cross(CrossVersion .for3Use2_13),
603
600
),
604
601
@@ -898,7 +895,14 @@ object Build {
898
895
899
896
lazy val `scala3-repl` = project.in(file(" repl" )).
900
897
asDottyLibrary(NonBootstrapped ).
901
- dependsOn(`scala3-compiler`)
898
+ dependsOn(`scala3-compiler`).
899
+ settings(
900
+ libraryDependencies ++= Seq (
901
+ " org.jline" % " jline-reader" % " 3.19.0" ,
902
+ " org.jline" % " jline-terminal" % " 3.19.0" ,
903
+ " org.jline" % " jline-terminal-jna" % " 3.19.0" , // needed for Windows
904
+ )
905
+ )
902
906
903
907
def dottyLibrary (implicit mode : Mode ): Project = mode match {
904
908
case NonBootstrapped => `scala3-library`
You can’t perform that action at this time.
0 commit comments