Skip to content

Commit

Permalink
Dependencies update (#805) (#823)
Browse files Browse the repository at this point in the history
* dependencies update

* comments

Co-authored-by: Laura Trotta <[email protected]>
  • Loading branch information
github-actions[bot] and l-trotta authored May 29, 2024
1 parent ae7d7e6 commit de23292
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions examples/realworld-app/rw-database/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ dependencies {
// https://www.testcontainers.org/
testImplementation('org.testcontainers:testcontainers:1.17.3')
testImplementation('org.testcontainers:elasticsearch:1.17.3')
// updating transitive dependency from testcontainers
testImplementation("org.apache.commons:commons-compress:1.26.1")


testImplementation('org.springframework.boot:spring-boot-starter-test:3.2.0')
}
Expand Down
7 changes: 6 additions & 1 deletion java-client-serverless/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ plugins {
id("de.thetaphi.forbiddenapis") version "3.4"
}

checkstyle {
toolVersion = "10.16.0"
}

// GitHub Maven repo doesn't like 1.0.0+20231031-SNAPSHOT
version = "1.0.0-20231031-SNAPSHOT"

Expand Down Expand Up @@ -254,7 +258,8 @@ dependencies {
// https://www.testcontainers.org/
testImplementation("org.testcontainers", "testcontainers", "1.17.3")
testImplementation("org.testcontainers", "elasticsearch", "1.17.3")

// updating transitive dependency from testcontainers
testImplementation("org.apache.commons","commons-compress","1.26.1")

testImplementation("io.opentelemetry", "opentelemetry-sdk", openTelemetryVersion)
}
Expand Down
6 changes: 6 additions & 0 deletions java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ plugins {
id("de.thetaphi.forbiddenapis") version "3.4"
}

checkstyle {
toolVersion = "10.16.0"
}

java {
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -250,6 +254,8 @@ dependencies {
// https://www.testcontainers.org/
testImplementation("org.testcontainers", "testcontainers", "1.17.3")
testImplementation("org.testcontainers", "elasticsearch", "1.17.3")
// updating transitive dependency from testcontainers
testImplementation("org.apache.commons","commons-compress","1.26.1")

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

Expand Down

0 comments on commit de23292

Please sign in to comment.