File tree 3 files changed +15
-1
lines changed
examples/realworld-app/rw-database
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 @@ -32,6 +32,10 @@ plugins {
32
32
id(" de.thetaphi.forbiddenapis" ) version " 3.4"
33
33
}
34
34
35
+ checkstyle {
36
+ toolVersion = " 10.16.0"
37
+ }
38
+
35
39
// GitHub Maven repo doesn't like 1.0.0+20231031-SNAPSHOT
36
40
version = " 1.0.0-20231031-SNAPSHOT"
37
41
@@ -254,7 +258,8 @@ dependencies {
254
258
// https://www.testcontainers.org/
255
259
testImplementation(" org.testcontainers" , " testcontainers" , " 1.17.3" )
256
260
testImplementation(" org.testcontainers" , " elasticsearch" , " 1.17.3" )
257
-
261
+ // updating transitive dependency from testcontainers
262
+ testImplementation(" org.apache.commons" ," commons-compress" ," 1.26.1" )
258
263
259
264
testImplementation(" io.opentelemetry" , " opentelemetry-sdk" , openTelemetryVersion)
260
265
}
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