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 {
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}
Original file line number Diff line number Diff 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
3640version = " 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}
Original file line number Diff line number Diff 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+
3438java {
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
You can’t perform that action at this time.
0 commit comments