Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lemastero committed Sep 21, 2020
1 parent 6691f66 commit a8a45ff
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -16,8 +16,8 @@ val commonSettings = Seq(
val malletDeps = Seq(
Dependencies.scopt
).flatten ++ Seq(
"org.jline" % "jline" % "3.1.2",
"net.java.dev.jna" % "jna" % "4.5.1"
"org.jline" % "jline" % "3.16.0",
"net.java.dev.jna" % "jna" % "5.6.0"
)

val dep = {
Expand Down
48 changes: 24 additions & 24 deletions project/Dependencies.scala
Expand Up @@ -25,10 +25,10 @@ object Dependencies {
)
}

val json4s = Seq("org.json4s" %% "json4s-native" % "3.5.4")
val json4s = Seq("org.json4s" %% "json4s-native" % "3.6.9")

val circe: Seq[ModuleID] = {
val circeVersion = "0.12.1" //0.9.3
val circeVersion = "0.13.0" //0.9.3

Seq(
"io.circe" %% "circe-core" % circeVersion,
Expand All @@ -38,28 +38,28 @@ object Dependencies {
)
}

val boopickle = Seq("io.suzaku" %% "boopickle" % "1.3.0")
val boopickle = Seq("io.suzaku" %% "boopickle" % "1.3.3")

val rocksDb = Seq(
"org.rocksdb" % "rocksdbjni" % "6.11.4"
)

val enumeratum: Seq[ModuleID] = Seq(
"com.beachape" %% "enumeratum" % "1.5.13",
"com.beachape" %% "enumeratum-cats" % "1.5.15",
"com.beachape" %% "enumeratum-scalacheck" % "1.5.16" % Test
"com.beachape" %% "enumeratum" % "1.6.1",
"com.beachape" %% "enumeratum-cats" % "1.6.1",
"com.beachape" %% "enumeratum-scalacheck" % "1.6.1" % Test
)

val testing: Seq[ModuleID] = Seq(
"org.scalatest" %% "scalatest" % "3.0.8" % "it,test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.1" % "it,test"
"org.scalatest" %% "scalatest" % "3.0.9" % "it,test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.14.3" % "it,test"
)

val cats: Seq[ModuleID] = {
val catsVersion = "2.0.0"
Seq(
"org.typelevel" %% "mouse" % "0.23",
"org.typelevel" %% "mouse" % "0.25",
"org.typelevel" %% "cats-core" % catsVersion,
"org.typelevel" %% "cats-effect" % catsVersion
)
Expand All @@ -71,33 +71,33 @@ object Dependencies {

val logging = Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
"net.logstash.logback" % "logstash-logback-encoder" % "6.4",
"org.codehaus.janino" % "janino" % "3.0.6"
"org.codehaus.janino" % "janino" % "3.1.2"
)

val twitterUtilCollection = Seq("com.twitter" %% "util-collection" % "18.5.0")
val twitterUtilCollection = Seq("com.twitter" %% "util-collection" % "19.1.0")

val crypto = Seq("org.bouncycastle" % "bcprov-jdk15on" % "1.59")
val crypto = Seq("org.bouncycastle" % "bcprov-jdk15on" % "1.66")

val scopt = Seq("com.github.scopt" % "scopt_2.12" % "3.7.0")
val scopt = Seq("com.github.scopt" % "scopt_2.12" % "3.7.1")

val apacheCommons = Seq(
"commons-io" % "commons-io" % "2.6"
"commons-io" % "commons-io" % "2.8.0"
)

val dependencies = Seq(
"org.jline" % "jline" % "3.1.2",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.0",
"org.scala-sbt.ipcsocket" % "ipcsocket" % "1.0.0",
"com.google.guava" % "guava" % "28.0-jre",
"org.xerial.snappy" % "snappy-java" % "1.1.7.2",
"org.web3j" % "core" % "3.4.0" % "test"
"org.jline" % "jline" % "3.16.0",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
"org.scala-sbt.ipcsocket" % "ipcsocket" % "1.1.0",
"com.google.guava" % "guava" % "29.0-jre",
"org.xerial.snappy" % "snappy-java" % "1.1.7.7",
"org.web3j" % "core" % "5.0.0" % Test
)

val prometheus: Seq[ModuleID] = {
val provider = "io.prometheus"
val version = "0.8.0"
val version = "0.9.0"
Seq(
provider % "simpleclient" % version,
provider % "simpleclient_logback" % version,
Expand All @@ -108,7 +108,7 @@ object Dependencies {

val micrometer: Seq[ModuleID] = {
val provider = "io.micrometer"
val version = "1.0.4"
val version = "1.5.5"
Seq(
// Required to compile metrics library https://github.com/micrometer-metrics/micrometer/issues/1133#issuecomment-452434205
"com.google.code.findbugs" % "jsr305" % "3.0.2" % Optional,
Expand Down

0 comments on commit a8a45ff

Please sign in to comment.