From 73209912d9401a15a314d4d81d0f1acb6bd28184 Mon Sep 17 00:00:00 2001 From: Thomas Vitale Date: Fri, 30 Jan 2026 21:04:59 +0100 Subject: [PATCH] fix: Configuration properties metadata are missing The Maven compiler is now configured to allow running the Spring Boot Configuration Processor. Furthermore, a dependency to Spring Boot Autoconfigure Processor has been added to the autoconfigure module so that metadata is also generated for the autoconfiguration conditions. Fixes gh-1267 Signed-off-by: Thomas Vitale --- pom.xml | 10 ++++++++++ spring-shell-core-autoconfigure/pom.xml | 6 ++++++ 2 files changed, 16 insertions(+) diff --git a/pom.xml b/pom.xml index f3e45a757..2a654d52f 100644 --- a/pom.xml +++ b/pom.xml @@ -141,6 +141,16 @@ nullaway ${nullaway.version} + + org.springframework.boot + spring-boot-autoconfigure-processor + ${spring-boot.version} + + + org.springframework.boot + spring-boot-configuration-processor + ${spring-boot.version} + diff --git a/spring-shell-core-autoconfigure/pom.xml b/spring-shell-core-autoconfigure/pom.xml index 9c9fac5c4..d449746e4 100644 --- a/spring-shell-core-autoconfigure/pom.xml +++ b/spring-shell-core-autoconfigure/pom.xml @@ -47,6 +47,12 @@ ${spring-boot.version} true + + org.springframework.boot + spring-boot-autoconfigure-processor + ${spring-boot.version} + true +