Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Oct 5, 2024
1 parent f769ac6 commit bf99918
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tasks.wrapper {
gradleVersion = "8.9"
gradleVersion = "8.10.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ java {
}

dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.3")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
}

tasks.test {
Expand Down
4 changes: 2 additions & 2 deletions data-quality/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ dependencies {

implementation(project(":import-api-java-client"))

implementation("com.fasterxml.jackson.core:jackson-annotations:2.17.2")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
implementation("com.fasterxml.jackson.core:jackson-annotations:2.18.0")
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.0")
implementation("com.opencsv:opencsv:$openCsvVersion")
implementation("org.slf4j:slf4j-api:+")

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
feignVersion = 10.3.0
feignFormVersion= 3.8.0

junitVersion = 5.10.3
mockitoJunitVersion = 5.12.0
junitVersion = 5.11.2
mockitoJunitVersion = 5.14.1
assertJVersion = 3.26.3

openApiGeneratorVersion = 4.3.0
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
16 changes: 8 additions & 8 deletions import-api-java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val oasGenerateApiTests: String by project
plugins {
id("import-api-examples.java-conventions")

id("org.openapi.generator") version "7.7.0"
id("org.openapi.generator") version "7.8.0"
id("org.jsonschema2dataclass") version "6.0.0"
}

Expand All @@ -31,14 +31,14 @@ dependencies {
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/9602#issuecomment-859528250
// Dependencies copied from openapi generated gradle build script
implementation( "com.brsanthu:migbase64:2.2")
implementation( "com.fasterxml.jackson.core:jackson-annotations:2.17.2")
implementation( "com.fasterxml.jackson.core:jackson-core:2.17.2")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.17.2")
implementation( "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2")
implementation( "com.fasterxml.jackson.core:jackson-annotations:2.18.0")
implementation( "com.fasterxml.jackson.core:jackson-core:2.18.0")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.18.0")
implementation( "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.0")
implementation( "com.google.code.findbugs:jsr305:3.0.2")
implementation( "io.github.openfeign:feign-core:13.3")
implementation( "io.github.openfeign:feign-jackson:13.3")
implementation( "io.github.openfeign:feign-slf4j:13.3")
implementation( "io.github.openfeign:feign-core:13.4")
implementation( "io.github.openfeign:feign-jackson:13.4")
implementation( "io.github.openfeign:feign-slf4j:13.4")
implementation( "io.github.openfeign.form:feign-form:3.8.0")
implementation ("io.swagger:swagger-annotations:1.6.14")
implementation( "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2")
Expand Down
4 changes: 2 additions & 2 deletions input-file-examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ dependencies {

implementation(project(":import-api-java-client"))

implementation( "com.fasterxml.jackson.core:jackson-annotations:2.17.2")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.17.2")
implementation( "com.fasterxml.jackson.core:jackson-annotations:2.18.0")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.18.0")

testImplementation("commons-io:commons-io:+")
testImplementation("org.assertj:assertj-core:$assertJVersion")
Expand Down

0 comments on commit bf99918

Please sign in to comment.