File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
cassandra-datastax-driver/src/main/scala/com/avast/sst/datastax Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package com.avast.sst.datastax
2
2
3
3
import com .datastax .oss .driver .api .core .config .{DriverOption , ProgrammaticDriverConfigLoaderBuilder => DriverBuilder }
4
4
5
- import scala .collection .JavaConverters ._
6
5
import scala .concurrent .duration .Duration
6
+ import scala .jdk .CollectionConverters ._
7
7
8
8
/** Helper functions to construct Datastax session using Java builder. */
9
9
private [datastax] object DatastaxHelper {
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ object BuildSettings {
18
18
compilerPlugin(scalafixSemanticdb), // necessary for Scalafix
19
19
Dependencies .silencerLib,
20
20
Dependencies .catsEffect,
21
+ Dependencies .scalaCollectionCompat,
21
22
Dependencies .logbackClassic % Test ,
22
23
Dependencies .scalaTest % Test
23
24
),
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ object Dependencies {
25
25
val monixEval = " io.monix" %% " monix-eval" % Versions .monix
26
26
val postgresql = " org.postgresql" % " postgresql" % " 42.2.11"
27
27
val pureConfig = " com.github.pureconfig" %% " pureconfig" % " 0.12.3"
28
+ val scalaCollectionCompat = " org.scala-lang.modules" %% " scala-collection-compat" % " 2.1.4"
28
29
val scalafixScaluzzi = " com.github.vovapolu" %% " scaluzzi" % " 0.1.3"
29
30
val scalafixSortImports = " com.nequissimus" %% " sort-imports" % " 0.3.2"
30
31
val scalaTest = " org.scalatest" %% " scalatest" % " 3.1.1"
Original file line number Diff line number Diff line change 1
1
addSbtPlugin(" io.github.davidgregory084" % " sbt-tpolecat" % " 0.1.11" )
2
- addSbtPlugin(" ch.epfl.scala" % " sbt-scalafix" % " 0.9.11 " )
2
+ addSbtPlugin(" ch.epfl.scala" % " sbt-scalafix" % " 0.9.12 " )
3
3
addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.3.2" )
4
4
addSbtPlugin(" com.geirsson" % " sbt-ci-release" % " 1.5.2" )
5
5
addSbtPlugin(" com.47deg" % " sbt-microsites" % " 1.1.3" )
You can’t perform that action at this time.
0 commit comments