File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
examples/realworld-app/rw-database Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ dependencies {
36
36
// https://www.testcontainers.org/
37
37
testImplementation(' org.testcontainers:testcontainers:1.17.3' )
38
38
testImplementation(' org.testcontainers:elasticsearch:1.17.3' )
39
+ // updating transitive dependency from testcontainers
40
+ testImplementation(" org.apache.commons:commons-compress:1.26.1" )
41
+
39
42
40
43
testImplementation(' org.springframework.boot:spring-boot-starter-test:3.2.0' )
41
44
}
Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ plugins {
33
33
id(" de.thetaphi.forbiddenapis" ) version " 3.4"
34
34
}
35
35
36
+ checkstyle {
37
+ toolVersion = " 10.16.0"
38
+ }
39
+
36
40
// GitHub Maven repo doesn't like 1.0.0+20231031-SNAPSHOT
37
41
version = " 1.0.0-20231031-SNAPSHOT"
38
42
@@ -269,7 +273,8 @@ dependencies {
269
273
// https://www.testcontainers.org/
270
274
testImplementation(" org.testcontainers" , " testcontainers" , " 1.17.3" )
271
275
testImplementation(" org.testcontainers" , " elasticsearch" , " 1.17.3" )
272
-
276
+ // updating transitive dependency from testcontainers
277
+ testImplementation(" org.apache.commons" ," commons-compress" ," 1.26.1" )
273
278
274
279
testImplementation(" io.opentelemetry" , " opentelemetry-sdk" , openTelemetryVersion)
275
280
}
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ plugins {
31
31
id(" de.thetaphi.forbiddenapis" ) version " 3.4"
32
32
}
33
33
34
+ checkstyle {
35
+ toolVersion = " 10.16.0"
36
+ }
37
+
34
38
java {
35
39
targetCompatibility = JavaVersion .VERSION_1_8
36
40
sourceCompatibility = JavaVersion .VERSION_1_8
@@ -250,6 +254,8 @@ dependencies {
250
254
// https://www.testcontainers.org/
251
255
testImplementation(" org.testcontainers" , " testcontainers" , " 1.17.3" )
252
256
testImplementation(" org.testcontainers" , " elasticsearch" , " 1.17.3" )
257
+ // updating transitive dependency from testcontainers
258
+ testImplementation(" org.apache.commons" ," commons-compress" ," 1.26.1" )
253
259
254
260
testImplementation(" io.opentelemetry" , " opentelemetry-sdk" , openTelemetryVersion)
255
261
You can’t perform that action at this time.
0 commit comments