Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c2331d7

Browse files
authoredJun 6, 2025··
Merge pull request #459 from guizmaii/updates
Update some dependencies
2 parents 1a7b689 + 1a82041 commit c2331d7

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed
 

‎.github/workflows/ci-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/setup-java@v4
1616
with:
1717
distribution: temurin
18-
java-version: 8
18+
java-version: 17
1919
cache: sbt
2020
- name: Setup sbt launcher
2121
uses: sbt/setup-sbt@v1

‎.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
scala: [2.12.20, 2.13.16, 3.3.6]
16-
java: [8, 11, 17]
16+
java: [17, 21]
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- name: Checkout

‎.jvmopts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-Dfile.encoding=UTF8
2+
-Xms256M
3+
-Xmx6G
4+
-XX:+UseG1GC

‎build.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import xerial.sbt.Sonatype.*
22
import ReleaseTransformations.*
33
import java.net.URI
44

5+
Global / onChangedBuildSource := IgnoreSourceChanges
6+
57
lazy val compileScalastyle = taskKey[Unit]("compileScalastyle")
68

79
val commonSettings = Seq(

‎project/Dependencies.scala

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,32 @@ object Dependencies {
1212
scope.map(s => modules.map(_ % s)).getOrElse(modules)
1313
}
1414

15-
private val testcontainersVersion = "1.20.6"
15+
private val testcontainersVersion = "1.21.1"
1616
private val seleniumVersion = "2.53.1"
17-
private val slf4jVersion = "1.7.32"
17+
private val slf4jVersion = "2.0.17"
1818
private val scalaTestVersion = "3.2.9"
1919
private val scalaTestMockitoVersion = "3.2.9.0"
2020
private val scalaTestSeleniumVersion_scala2 = "3.2.2.0"
2121
private val scalaTestSeleniumVersion_scala3 = "3.2.9.0"
2222
private val junitVersion = "4.13.2"
23-
private val munitVersion = "1.0.0"
23+
private val munitVersion = "1.1.1"
2424
private val mysqlConnectorVersion = "5.1.42"
2525
private val neo4jConnectorVersion = "4.0.0"
2626
private val oracleDriverVersion = "21.3.0.0"
2727
private val cassandraDriverVersion = "4.0.1"
28-
private val postgresqlDriverVersion = "42.2.24"
28+
private val postgresqlDriverVersion = "42.7.6"
2929
private val kafkaDriverVersion = "2.2.0"
3030
private val mockitoVersion = "3.12.4"
3131
private val restAssuredVersion = "4.0.0"
3232
private val groovyVersion = "2.5.16"
3333
private val awsV1Version = "1.11.479"
34-
private val awsV2Version = "2.20.68"
34+
private val awsV2Version = "2.31.58"
3535
private val sttpVersion = "3.3.14"
3636
private val firestoreConnectorVersion = "3.0.11"
3737
private val bigtableVersion = "2.45.0"
3838
private val pubsubVersion = "1.139.4"
39-
private val redisTestcontainersVersion = "2.0.1"
40-
private val jedisVersion = "5.0.0"
39+
private val redisTestcontainersVersion = "2.2.4"
40+
private val jedisVersion = "6.0.0"
4141
private val wireMockTestcontainersVersion = "1.0-alpha-13"
4242
private val milvusSdkVersion = "2.4.1"
4343
private val quadrantClientVersion = "1.14.0"
@@ -148,7 +148,7 @@ object Dependencies {
148148
) ++ TEST(
149149
("io.rest-assured" % "scala-support" % restAssuredVersion)
150150
.exclude("org.codehaus.groovy", "groovy"),
151-
"org.codehaus.groovy"% "groovy" % groovyVersion
151+
"org.codehaus.groovy" % "groovy" % groovyVersion
152152
)
153153
)
154154

0 commit comments

Comments
 (0)
Please sign in to comment.