Skip to content

Commit 7ce6f5a

Browse files
authored
Dependencies update (#805)
* dependencies update * comments
1 parent 8c343a6 commit 7ce6f5a

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
@@ -33,6 +33,10 @@ plugins {
3333
id("de.thetaphi.forbiddenapis") version "3.4"
3434
}
3535

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

@@ -269,7 +273,8 @@ dependencies {
269273
// https://www.testcontainers.org/
270274
testImplementation("org.testcontainers", "testcontainers", "1.17.3")
271275
testImplementation("org.testcontainers", "elasticsearch", "1.17.3")
272-
276+
// updating transitive dependency from testcontainers
277+
testImplementation("org.apache.commons","commons-compress","1.26.1")
273278

274279
testImplementation("io.opentelemetry", "opentelemetry-sdk", openTelemetryVersion)
275280
}

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)