Skip to content
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
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.13.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.13.2")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.14.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.14.1")
}

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.19.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.19.1")
implementation("com.fasterxml.jackson.core:jackson-annotations:2.20")
implementation("com.fasterxml.jackson.core:jackson-databind:2.20.1")
implementation("com.opencsv:opencsv:$openCsvVersion")
implementation("org.slf4j:slf4j-api:+")

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

junitVersion = 5.13.2
mockitoJunitVersion = 5.18.0
assertJVersion = 3.27.3
junitVersion = 5.14.1
mockitoJunitVersion = 5.20.0
assertJVersion = 3.27.6

openApiGeneratorVersion = 4.3.0
openApiJacksonDatabindNullableVersion = 0.1.0
jsonschema2pojoVersion = 1.1.1
lombokVersion = 1.18.38
openCsvVersion = 5.11.2
lombokVersion = 1.18.42
openCsvVersion = 5.12.0
#GENERATE OPEN API PROPERTIES
oasGeneratorName=java
oasLibrary=feign
Expand Down
12 changes: 6 additions & 6 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.14.0"
id("org.openapi.generator") version "7.17.0"
id("org.jsonschema2dataclass") version "6.0.0"
}

Expand All @@ -31,18 +31,18 @@ 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.19.1")
implementation( "com.fasterxml.jackson.core:jackson-core:2.19.1")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.19.1")
implementation( "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.1")
implementation( "com.fasterxml.jackson.core:jackson-annotations:2.20")
implementation( "com.fasterxml.jackson.core:jackson-core:2.20.1")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.20.1")
implementation( "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.1")
implementation( "com.google.code.findbugs:jsr305:3.0.2")
implementation( "io.github.openfeign:feign-core:13.6")
implementation( "io.github.openfeign:feign-jackson:13.6")
implementation( "io.github.openfeign:feign-slf4j:13.6")
implementation( "io.github.openfeign.form:feign-form:3.8.0")
implementation ("io.swagger:swagger-annotations:1.6.16")
implementation( "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2")
implementation( "org.openapitools:jackson-databind-nullable:0.2.6")
implementation( "org.openapitools:jackson-databind-nullable:0.2.8")
}

java {
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.19.1")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.19.1")
implementation( "com.fasterxml.jackson.core:jackson-annotations:2.20")
implementation( "com.fasterxml.jackson.core:jackson-databind:2.20.1")

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