Skip to content

Commit 6aed8b6

Browse files
authored
Merge branch 'develop' into feature/ETCM-126-rpc-cleanup
2 parents 785da3c + e73f77b commit 6aed8b6

File tree

7 files changed

+3165
-3184
lines changed

7 files changed

+3165
-3184
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ val commonSettings = Seq(
1616
val malletDeps = Seq(
1717
Dependencies.scopt
1818
).flatten ++ Seq(
19-
"org.jline" % "jline" % "3.1.2",
20-
"net.java.dev.jna" % "jna" % "4.5.1"
19+
Dependencies.jline,
20+
Dependencies.jna
2121
)
2222

2323
val dep = {

project/Dependencies.scala

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ object Dependencies {
3838
)
3939
}
4040

41-
val boopickle = Seq("io.suzaku" %% "boopickle" % "1.3.0")
41+
val boopickle = Seq("io.suzaku" %% "boopickle" % "1.3.3")
4242

4343
val rocksDb = Seq(
4444
"org.rocksdb" % "rocksdbjni" % "6.11.4"
@@ -54,7 +54,7 @@ object Dependencies {
5454
"org.scalatest" %% "scalatest" % "3.2.2" % "it,test",
5555
"org.scalamock" %% "scalamock" % "5.0.0" % "test",
5656
"org.scalatestplus" %% "scalacheck-1-14" % "3.2.2.0" % "test",
57-
"org.scalacheck" %% "scalacheck" % "1.14.1" % "it,test"
57+
"org.scalacheck" %% "scalacheck" % "1.14.3" % "it,test"
5858
)
5959

6060
val cats: Seq[ModuleID] = {
@@ -72,33 +72,37 @@ object Dependencies {
7272

7373
val logging = Seq(
7474
"ch.qos.logback" % "logback-classic" % "1.2.3",
75-
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
75+
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
7676
"net.logstash.logback" % "logstash-logback-encoder" % "6.4",
77-
"org.codehaus.janino" % "janino" % "3.0.6"
77+
"org.codehaus.janino" % "janino" % "3.1.2"
7878
)
7979

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

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

84-
val scopt = Seq("com.github.scopt" % "scopt_2.12" % "3.7.0")
84+
val scopt = Seq("com.github.scopt" % "scopt_2.12" % "3.7.1")
8585

8686
val apacheCommons = Seq(
87-
"commons-io" % "commons-io" % "2.6"
87+
"commons-io" % "commons-io" % "2.8.0"
8888
)
8989

90+
val jline = "org.jline" % "jline" % "3.16.0"
91+
92+
val jna = "net.java.dev.jna" % "jna" % "5.6.0"
93+
9094
val dependencies = Seq(
91-
"org.jline" % "jline" % "3.1.2",
92-
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.0",
93-
"org.scala-sbt.ipcsocket" % "ipcsocket" % "1.0.0",
94-
"com.google.guava" % "guava" % "28.0-jre",
95-
"org.xerial.snappy" % "snappy-java" % "1.1.7.2",
96-
"org.web3j" % "core" % "3.4.0" % "test"
95+
jline,
96+
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
97+
"org.scala-sbt.ipcsocket" % "ipcsocket" % "1.1.0",
98+
"com.google.guava" % "guava" % "29.0-jre",
99+
"org.xerial.snappy" % "snappy-java" % "1.1.7.7",
100+
"org.web3j" % "core" % "5.0.0" % Test
97101
)
98102

99103
val prometheus: Seq[ModuleID] = {
100104
val provider = "io.prometheus"
101-
val version = "0.8.0"
105+
val version = "0.9.0"
102106
Seq(
103107
provider % "simpleclient" % version,
104108
provider % "simpleclient_logback" % version,
@@ -109,7 +113,7 @@ object Dependencies {
109113

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

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.2.8
1+
sbt.version = 1.3.13

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
logLevel := sbt.Level.Warn
2-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
2+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
33
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0")
44
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.5")
5-
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "2.1.0")
5+
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.0")
66
addSbtPlugin("com.thesamet" % "sbt-protoc" % "0.99.25")
7-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.4.2")
7+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.1")
88

99
libraryDependencies += "com.trueaccord.scalapb" %% "compilerplugin" % "0.6.6"

0 commit comments

Comments
 (0)