This page gives you a quick reference to get Spring Boot Configuration Processor dependency for Maven or Gradle projects.
You can also download the Spring Boot Configuration Processor dependency, the link given at the "Download JAR File" section.
Spring Boot Configuration Processor dependency is a starter for Spring Boot Configuration Annotation Processor.
Spring Boot Configuration Processor Maven Dependency
Copy below maven dependency and paste in your project pom.xml file:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
Spring Boot Configuration Processor Gradle Dependency
Copy below Gradle dependency and paste it into your project build.gradle file:
implementation group: 'org.springframework.boot', name: 'spring-boot-configuration-processor'
Comments
Post a Comment