Skip to content

Commit

Permalink
chore(deps): upgrade spring boot 2.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
iwaltgen committed Mar 1, 2022
1 parent 6f66124 commit 8e6625d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,15 @@ allprojects {
subprojects {

val jacksonVersion by extra { "2.13.1" }
val springBootVersion by extra { "2.6.3" }
val springBootVersion by extra { "2.6.4" }
val springRestDocsVersion by extra { "2.0.6.RELEASE" }
val junitVersion by extra { "5.8.2" }
val jsonpathVersion by extra { "2.6.0" }
val swaggerVersion by extra { "2.1.13" }
val swaggerParserVersion by extra { "2.0.30" }
val assertjVersion by extra { "3.21.0" }
val hibernateValidatorVersion by extra { "6.2.2.Final" }
val jsonSchemaValidatorVersion by extra { "2.2.14" }

tasks.withType<KotlinCompile> {
kotlinOptions {
Expand Down
6 changes: 4 additions & 2 deletions restdocs-api-spec-jsonschema/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ val jacksonVersion: String by extra
val assertjVersion: String by extra
val jsonpathVersion: String by extra
val junitVersion: String by extra
val hibernateValidatorVersion: String by extra
val jsonSchemaValidatorVersion: String by extra

dependencies {
compileOnly(kotlin("stdlib-jdk8"))
Expand All @@ -15,6 +17,6 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
testImplementation("com.jayway.jsonpath:json-path:$jsonpathVersion")
testImplementation("org.assertj:assertj-core:$assertjVersion")
testImplementation("org.hibernate.validator:hibernate-validator:6.2.0.Final")
testImplementation("com.github.java-json-tools:json-schema-validator:2.2.14")
testImplementation("org.hibernate.validator:hibernate-validator:$hibernateValidatorVersion")
testImplementation("com.github.java-json-tools:json-schema-validator:$jsonSchemaValidatorVersion")
}
6 changes: 4 additions & 2 deletions restdocs-api-spec/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ val springRestDocsVersion: String by extra
val assertjVersion: String by extra
val jsonpathVersion: String by extra
val junitVersion: String by extra
val hibernateValidatorVersion: String by extra
val jsonSchemaValidatorVersion: String by extra

dependencies {
compileOnly(kotlin("stdlib-jdk8"))
Expand All @@ -20,7 +22,7 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-hateoas:$springBootVersion")
testImplementation("org.assertj:assertj-core:$assertjVersion")
testImplementation("com.jayway.jsonpath:json-path:$jsonpathVersion")
testImplementation("org.hibernate.validator:hibernate-validator:6.2.0.Final")
testImplementation("com.github.java-json-tools:json-schema-validator:2.2.14")
testImplementation("org.hibernate.validator:hibernate-validator:$hibernateValidatorVersion")
testImplementation("com.github.java-json-tools:json-schema-validator:$jsonSchemaValidatorVersion")
testImplementation("com.github.erosb:everit-json-schema:1.11.0")
}

0 comments on commit 8e6625d

Please sign in to comment.