From fac92b66cbc20e89363babc499677b27a2003672 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 25 Nov 2018 23:22:22 -0500 Subject: [PATCH] bump JLine and log4j 2 --- project/Dependencies.scala | 6 +++--- project/plugins.sbt | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 3437b7f0f..d820356a3 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -35,7 +35,7 @@ object Dependencies { def addSbtIO(p: Project): Project = addSbtModule(p, sbtIoPath, "io", sbtIO) - val jline = "jline" % "jline" % "2.14.4" + val jline = "jline" % "jline" % "2.14.6" val scalaCompiler = Def.setting { "org.scala-lang" % "scala-compiler" % scalaVersion.value } val scalaReflect = Def.setting { "org.scala-lang" % "scala-reflect" % scalaVersion.value } @@ -54,10 +54,10 @@ object Dependencies { "com.eed3si9n" %% "sjson-new-murmurhash" % contrabandSjsonNewVersion.value } - def log4jVersion = "2.8.1" + def log4jVersion = "2.11.1" val log4jApi = "org.apache.logging.log4j" % "log4j-api" % log4jVersion val log4jCore = "org.apache.logging.log4j" % "log4j-core" % log4jVersion - val disruptor = "com.lmax" % "disruptor" % "3.3.6" + val disruptor = "com.lmax" % "disruptor" % "3.4.2" val silencerPlugin = "com.github.ghik" %% "silencer-plugin" % "1.2" val silencerLib = "com.github.ghik" %% "silencer-lib" % "1.2" % Provided } diff --git a/project/plugins.sbt b/project/plugins.sbt index c064ea157..20afa9ff8 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,4 @@ addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.8") addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.4.1") addSbtPlugin("com.lightbend" % "sbt-whitesource" % "0.1.9") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")