From bb9389b586aeeaede2fd7c3a7034618e5507289d Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 15 Oct 2024 20:09:21 +0200 Subject: [PATCH] Backport "REPL: JLine 3.27.0 (was 3.25.1)" to 3.6.0 (#21772) Backports #21752 to 3.6.0-RC1 Co-authored-by: Seth Tisue --- project/Build.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index 8993edc45ede..38591a8298fa 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -694,9 +694,9 @@ object Build { libraryDependencies ++= Seq( "org.scala-lang.modules" % "scala-asm" % "9.7.0-scala-2", // used by the backend Dependencies.compilerInterface, - "org.jline" % "jline-reader" % "3.25.1", // used by the REPL - "org.jline" % "jline-terminal" % "3.25.1", - "org.jline" % "jline-terminal-jna" % "3.25.1", // needed for Windows + "org.jline" % "jline-reader" % "3.27.0", // used by the REPL + "org.jline" % "jline-terminal" % "3.27.0", + "org.jline" % "jline-terminal-jna" % "3.27.0", // needed for Windows ("io.get-coursier" %% "coursier" % "2.0.16" % Test).cross(CrossVersion.for3Use2_13), ),