Skip to content
Open
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
22 changes: 11 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id 'java'
id 'org.openapi.generator' version '7.14.0'
id 'com.diffplug.spotless' version '7.2.1'
id 'org.openapi.generator' version '7.16.0'
id 'com.diffplug.spotless' version '8.0.0'
id 'jacoco'
id 'maven-publish'
id "com.github.ben-manes.versions" version "0.52.0"
id "org.cyclonedx.bom" version "2.3.1"
id "com.github.ben-manes.versions" version "0.53.0"
id "org.cyclonedx.bom" version "2.4.1"
}

group = 'uk.gov.hmcts.dcs'
Expand Down Expand Up @@ -59,19 +59,19 @@ sourceSets {
}

dependencies {
implementation 'com.fasterxml.jackson.core:jackson-core:2.19.2' // Use a compatible version
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.2' // For Java 8 date/time
implementation 'com.fasterxml.jackson.core:jackson-core:2.20.0' // Use a compatible version
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0' // For Java 8 date/time
implementation 'org.slf4j:slf4j-api:2.0.17'
implementation 'ch.qos.logback:logback-classic:1.5.18'
implementation 'ch.qos.logback:logback-classic:1.5.19'
//If you use the validation, also add this
implementation 'io.swagger.parser.v3:swagger-parser:2.1.31'
implementation 'io.swagger.core.v3:swagger-annotations:2.2.34'
implementation 'io.swagger.parser.v3:swagger-parser:2.1.34'
implementation 'io.swagger.core.v3:swagger-annotations:2.2.38'

implementation 'javax.annotation:javax.annotation-api:1.3.2'

implementation 'org.openapitools:jackson-databind-nullable:0.2.6'
implementation 'org.openapitools:jackson-databind-nullable:0.2.7'

testImplementation(platform('org.junit:junit-bom:5.13.4'))
testImplementation(platform('org.junit:junit-bom:6.0.0'))
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
Expand Down
Loading