Skip to content
Closed
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
16 changes: 8 additions & 8 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.16.0'
id 'org.openapi.generator' version '7.17.0'
id 'com.diffplug.spotless' version '8.0.0'
id 'jacoco'
id 'maven-publish'
id 'com.github.ben-manes.versions' version '0.53.0'
id 'org.cyclonedx.bom' version '2.4.1'
id 'org.cyclonedx.bom' version '3.0.1'
id 'pmd'
}

Expand Down Expand Up @@ -232,7 +232,7 @@ tasks.named("pmdTest").configure { enabled = false }
// ---- Versions / libs ----
ext {
// NOTE: prefer a stable Spring Boot 3.3.x+ for Java 21; adjust as needed.
springBootVersion = "4.0.0-M3"
springBootVersion = "4.0.0-RC1"
lombokVersion = "1.18.42"
}

Expand All @@ -244,13 +244,13 @@ dependencies {
// Generated interfaces will use Spring + Bean Validation annotations
implementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-validation:$springBootVersion"
implementation "io.swagger.parser.v3:swagger-parser:2.1.34"
implementation "io.swagger.core.v3:swagger-models:2.2.38"
implementation "io.swagger.parser.v3:swagger-parser:2.1.35"
implementation "io.swagger.core.v3:swagger-models:2.2.40"
// Swagger annotations (compileOnly so you don't leak them transitively)
compileOnly 'io.swagger.core.v3:swagger-annotations:2.2.38'
compileOnly 'io.swagger.core.v3:swagger-annotations:2.2.40'

// Logging util
implementation 'net.logstash.logback:logstash-logback-encoder:8.1'
implementation 'net.logstash.logback:logstash-logback-encoder:9.0'

// Jackson annotations (used by generated models)
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.20'
Expand All @@ -262,7 +262,7 @@ dependencies {
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"

// Testing
testImplementation("org.assertj:assertj-core:3.6.1")
testImplementation("org.assertj:assertj-core:3.27.6")
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
Expand Down
Loading