File tree 3 files changed +6
-5
lines changed
src/test/scala/alpakka/slick
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ version := "1.0"
6
6
7
7
scalaVersion := " 2.13.15"
8
8
9
- val pekkoVersion = " 1.1.1 "
9
+ val pekkoVersion = " 1.1.2 "
10
10
val pekkoHTTPVersion = " 1.1.0"
11
11
val pekkoConnectorVersion = " 1.0.2"
12
12
val pekkoConnectorKafkaVersion = " 1.0.0"
@@ -104,7 +104,7 @@ libraryDependencies ++= Seq(
104
104
" org.apache.httpcomponents.core5" % " httpcore5" % " 5.3" ,
105
105
" commons-io" % " commons-io" % " 2.16.1" ,
106
106
" org.apache.commons" % " commons-lang3" % " 3.12.0" ,
107
- " com.sksamuel.avro4s" %% " avro4s-core" % " 4.1.2" ,
107
+ " com.sksamuel.avro4s" %% " avro4s-core" % " 4.1.2" , // 5.x for Scala 3
108
108
109
109
" org.apache.camel" % " camel-core" % " 3.20.2" ,
110
110
" org.apache.camel" % " camel-reactive-streams" % " 3.20.2" ,
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
3
3
// https://www.scala-sbt.org/1.x/docs/sbt-1.4-Release-Notes.html#sbt-dependency-graph+is+in-sourced
4
4
// addDependencyTreePlugin
5
5
6
- addSbtPlugin(" io.gatling" % " gatling-sbt" % " 4.9.2" )
6
+ // https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin
7
+ addSbtPlugin(" io.gatling" % " gatling-sbt" % " 4.10.1" )
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ public void beforeAll(ExtensionContext context) throws IOException {
26
26
.setCleanDataDirectory (true )
27
27
.setPort (5432 )
28
28
// Set the write-ahead log level to "logical" to make sure that enough
29
- // information is written
30
- // to the write-ahead log as is required for CDC with Debezium
29
+ // information is written to the write-ahead log
30
+ // because this is required for CDC with Debezium
31
31
.setServerConfig ("wal_level" , "logical" )
32
32
.start ();
33
33
}
You can’t perform that action at this time.
0 commit comments