Update SSL Config version for Scala 2.12 and 2.13
This commit is contained in:
parent
ba8922c9ba
commit
97cf472aff
2 changed files with 4 additions and 8 deletions
|
|
@ -25,6 +25,8 @@ This is just stub documentation. It will be improved.
|
|||
If this is not possible/desired then you can add `scala-java8-compat` as dependency yourself.
|
||||
* In addition to the previous point, for Scala 2.12 `scala-java8-compat` has been updated to `1.0.2`. If you are using
|
||||
an older binary incompatible version of `scala-java8-compat` its recommend to update to `1.0.2`.
|
||||
* For Scala 2.12 and 2.13 [ssl-config](https://github.com/lightbend/ssl-config) has been updated to 0.6.1 in order
|
||||
to bring in bug/security fixes. Note that ssl-config 0.6.1 is binary and source compatible with 0.4.1.
|
||||
|
||||
We are still investigating the effects of how the package name changes affect the @ref:[Persistence](../persistence.md)
|
||||
and @ref:[Cluster](../cluster-usage.md) modules.
|
||||
|
|
|
|||
|
|
@ -46,13 +46,7 @@ object Dependencies {
|
|||
|
||||
val reactiveStreamsVersion = "1.0.4"
|
||||
|
||||
val sslConfigVersion = Def.setting {
|
||||
if (scalaVersion.value.startsWith("3.")) {
|
||||
"0.6.1"
|
||||
} else {
|
||||
"0.4.3"
|
||||
}
|
||||
}
|
||||
val sslConfigVersion = "0.6.1"
|
||||
|
||||
val scalaTestVersion = Def.setting {
|
||||
if (scalaVersion.value.startsWith("3.")) {
|
||||
|
|
@ -97,7 +91,7 @@ object Dependencies {
|
|||
|
||||
// ssl-config
|
||||
val sslConfigCore = Def.setting {
|
||||
"com.typesafe" %% "ssl-config-core" % sslConfigVersion.value
|
||||
"com.typesafe" %% "ssl-config-core" % sslConfigVersion
|
||||
}
|
||||
|
||||
val lmdb = "org.lmdbjava" % "lmdbjava" % "0.7.0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue