Skip to content

Commit 428523e

Browse files
Add spring-boot-autoconfigure-processor
1 parent e10cdf8 commit 428523e

4 files changed

Lines changed: 4 additions & 0 deletions

File tree

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ problem4j-jackson2 = { module = "io.github.problem4j:problem4j-jackson2", versio
2222

2323
# versions managed by spring-boot-dependencies
2424
spring-boot-autoconfigure = { module = "org.springframework.boot:spring-boot-autoconfigure" }
25+
spring-boot-autoconfigure-processor = { module = "org.springframework.boot:spring-boot-autoconfigure-processor" }
2526
spring-boot-configuration-processor = { module = "org.springframework.boot:spring-boot-configuration-processor" }
2627
spring-boot-starter-test = { module = "org.springframework.boot:spring-boot-starter-test" }
2728
spring-boot-starter-web = { module = "org.springframework.boot:spring-boot-starter-web" }

problem4j-spring-web/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies {
1919
compileOnly(libs.jakarta.validation.api)
2020

2121
annotationProcessor(platform(libs.spring.boot.dependencies))
22+
annotationProcessor(libs.spring.boot.autoconfigure.processor)
2223
annotationProcessor(libs.spring.boot.configuration.processor)
2324

2425
// Test

problem4j-spring-webflux/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ dependencies {
1818
compileOnly(libs.slf4j.api)
1919

2020
annotationProcessor(platform(libs.spring.boot.dependencies))
21+
annotationProcessor(libs.spring.boot.autoconfigure.processor)
2122
annotationProcessor(libs.spring.boot.configuration.processor)
2223

2324
// Test

problem4j-spring-webmvc/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies {
1919
compileOnly(libs.slf4j.api)
2020

2121
annotationProcessor(platform(libs.spring.boot.dependencies))
22+
annotationProcessor(libs.spring.boot.autoconfigure.processor)
2223
annotationProcessor(libs.spring.boot.configuration.processor)
2324

2425
// Test

0 commit comments

Comments
 (0)