Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.12"
}
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.4")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
}

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.2")
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.2")
implementation("com.opencsv:opencsv:$openCsvVersion")
implementation("org.slf4j:slf4j-api:+")

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

junitVersion = 5.10.3
mockitoJunitVersion = 5.12.0
assertJVersion = 3.26.3
junitVersion = 5.11.4
mockitoJunitVersion = 5.15.2
assertJVersion = 3.27.2

openApiGeneratorVersion = 4.3.0
openApiJacksonDatabindNullableVersion = 0.1.0
jsonschema2pojoVersion = 1.1.1
lombokVersion = 1.18.34
lombokVersion = 1.18.36
openCsvVersion = 5.9
#GENERATE OPEN API PROPERTIES
oasGeneratorName=java
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.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
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.10.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.2")
implementation( "com.fasterxml.jackson.core:jackson-core:2.18.2")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.18.2")
implementation( "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2")
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.5")
implementation( "io.github.openfeign:feign-jackson:13.5")
implementation( "io.github.openfeign:feign-slf4j:13.5")
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.2")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.18.2")

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