=sbt Bump reactive-stream-version to 1.0.4

This commit is contained in:
He-Pin 2023-03-24 00:46:48 +08:00 committed by kerr
parent 321c572114
commit 2c4d0ee02d

View file

@ -42,7 +42,7 @@ object Dependencies {
val scala3Version = "3.2.2" // Needed for Jackson 2.14.2
val allScalaVersions = Seq(scala213Version, scala212Version, scala3Version)
val reactiveStreamsVersion = "1.0.3"
val reactiveStreamsVersion = "1.0.4"
val sslConfigVersion = Def.setting {
if (scalaVersion.value.startsWith("3.")) {
@ -99,7 +99,7 @@ object Dependencies {
val jctools = "org.jctools" % "jctools-core" % "3.3.0" // ApacheV2
// reactive streams
val reactiveStreams = "org.reactivestreams" % "reactive-streams" % reactiveStreamsVersion // CC0
val reactiveStreams = "org.reactivestreams" % "reactive-streams" % reactiveStreamsVersion // MIT-0
// ssl-config
val sslConfigCore = Def.setting {
@ -202,7 +202,8 @@ object Dependencies {
val slf4jLog4j = "org.slf4j" % "log4j-over-slf4j" % slf4jVersion % Test // MIT
// reactive streams tck
val reactiveStreamsTck = "org.reactivestreams" % "reactive-streams-tck" % reactiveStreamsVersion % Test // CC0
val reactiveStreamsTck = ("org.reactivestreams" % "reactive-streams-tck" % reactiveStreamsVersion % Test)
.exclude("org.testng", "testng") // MIT-0
val protobufRuntime = "com.google.protobuf" % "protobuf-java" % protobufJavaVersion % Test