From fdb6bf9836215a0d870af8e7973f718fd0b23082 Mon Sep 17 00:00:00 2001 From: Kamil Adam Date: Thu, 4 Apr 2024 15:12:56 +0200 Subject: [PATCH] Add Spring Configuration Processor --- HELP.md | 1 + build.gradle.kts | 1 + 2 files changed, 2 insertions(+) diff --git a/HELP.md b/HELP.md index 7be5919..60cb694 100644 --- a/HELP.md +++ b/HELP.md @@ -8,6 +8,7 @@ For further reference, please consider the following sections: * [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.2.4/gradle-plugin/reference/html/#build-image) * [GraalVM Native Image Support](https://docs.spring.io/spring-boot/docs/3.2.4/reference/html/native-image.html#native-image) * [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/3.2.4/reference/htmlsingle/index.html#using.devtools) +* [Spring Configuration Processor](https://docs.spring.io/spring-boot/docs/3.2.4/reference/htmlsingle/index.html#appendix.configuration-metadata.annotation-processor) ### Additional Links These additional references should also help you: diff --git a/build.gradle.kts b/build.gradle.kts index b1ed607..a7f6878 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,6 +31,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-reflect") compileOnly("org.projectlombok:lombok") developmentOnly("org.springframework.boot:spring-boot-devtools") + annotationProcessor("org.springframework.boot:spring-boot-configuration-processor") annotationProcessor("org.projectlombok:lombok") testImplementation("org.springframework.boot:spring-boot-starter-test") }