From 94ed0963180af3f009ef4c7552f1660a9a3e1566 Mon Sep 17 00:00:00 2001 From: Tom Grigg Date: Thu, 11 Mar 2021 18:15:11 -0800 Subject: [PATCH] Upgrade JLine to 3.19.0 Aligns with Scala 2.13.5: scala/scala#9467 and sbt 1.4.8: sbt/sbt#6366 Fixes #11488 --- project/Build.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index e8da4146fbbe..250936f9466d 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -415,9 +415,9 @@ object Build { libraryDependencies ++= Seq( "org.scala-lang.modules" % "scala-asm" % "9.1.0-scala-1", // used by the backend Dependencies.oldCompilerInterface, // we stick to the old version to avoid deprecation warnings - "org.jline" % "jline-reader" % "3.15.0", // used by the REPL - "org.jline" % "jline-terminal" % "3.15.0", - "org.jline" % "jline-terminal-jna" % "3.15.0" // needed for Windows + "org.jline" % "jline-reader" % "3.19.0", // used by the REPL + "org.jline" % "jline-terminal" % "3.19.0", + "org.jline" % "jline-terminal-jna" % "3.19.0" // needed for Windows ), // For convenience, change the baseDirectory when running the compiler