Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit 9c45cf0

Browse files
committed
feat: Add Maven Compiler Plugin configuration for Lombok annotation processing
1 parent cd79dc3 commit 9c45cf0

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

auth-service/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,18 @@
177177
<groupId>org.springframework.boot</groupId>
178178
<artifactId>spring-boot-maven-plugin</artifactId>
179179
</plugin>
180+
<plugin>
181+
<groupId>org.apache.maven.plugins</groupId>
182+
<artifactId>maven-compiler-plugin</artifactId>
183+
<configuration>
184+
<annotationProcessorPaths>
185+
<path>
186+
<groupId>org.projectlombok</groupId>
187+
<artifactId>lombok</artifactId>
188+
</path>
189+
</annotationProcessorPaths>
190+
</configuration>
191+
</plugin>
180192
</plugins>
181193
</build>
182194

0 commit comments

Comments
 (0)