Skip to content

Commit 09dd9bb

Browse files
Dependencies update (#805) (#822)
* dependencies update * comments Co-authored-by: Laura Trotta <153528055+l-trotta@users.noreply.github.com>
1 parent cd79527 commit 09dd9bb

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

examples/realworld-app/rw-database/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ dependencies {
3636
// https://www.testcontainers.org/
3737
testImplementation('org.testcontainers:testcontainers:1.17.3')
3838
testImplementation('org.testcontainers:elasticsearch:1.17.3')
39+
// updating transitive dependency from testcontainers
40+
testImplementation("org.apache.commons:commons-compress:1.26.1")
41+
3942

4043
testImplementation('org.springframework.boot:spring-boot-starter-test:3.2.0')
4144
}

java-client-serverless/build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ plugins {
3232
id("de.thetaphi.forbiddenapis") version "3.4"
3333
}
3434

35+
checkstyle {
36+
toolVersion = "10.16.0"
37+
}
38+
3539
// GitHub Maven repo doesn't like 1.0.0+20231031-SNAPSHOT
3640
version = "1.0.0-20231031-SNAPSHOT"
3741

@@ -254,7 +258,8 @@ dependencies {
254258
// https://www.testcontainers.org/
255259
testImplementation("org.testcontainers", "testcontainers", "1.17.3")
256260
testImplementation("org.testcontainers", "elasticsearch", "1.17.3")
257-
261+
// updating transitive dependency from testcontainers
262+
testImplementation("org.apache.commons","commons-compress","1.26.1")
258263

259264
testImplementation("io.opentelemetry", "opentelemetry-sdk", openTelemetryVersion)
260265
}

java-client/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ plugins {
3131
id("de.thetaphi.forbiddenapis") version "3.4"
3232
}
3333

34+
checkstyle {
35+
toolVersion = "10.16.0"
36+
}
37+
3438
java {
3539
targetCompatibility = JavaVersion.VERSION_1_8
3640
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -250,6 +254,8 @@ dependencies {
250254
// https://www.testcontainers.org/
251255
testImplementation("org.testcontainers", "testcontainers", "1.17.3")
252256
testImplementation("org.testcontainers", "elasticsearch", "1.17.3")
257+
// updating transitive dependency from testcontainers
258+
testImplementation("org.apache.commons","commons-compress","1.26.1")
253259

254260
testImplementation("io.opentelemetry", "opentelemetry-sdk", openTelemetryVersion)
255261

0 commit comments

Comments
 (0)