Skip to content

Commit 232864b

Browse files
committed
Update Lombok annotation processor Maven config
1 parent 446951a commit 232864b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,19 @@
184184
</configuration>
185185
</plugin>
186186

187+
<plugin>
188+
<groupId>org.apache.maven.plugins</groupId>
189+
<artifactId>maven-compiler-plugin</artifactId>
190+
<configuration>
191+
<annotationProcessorPaths>
192+
<path>
193+
<groupId>org.projectlombok</groupId>
194+
<artifactId>lombok</artifactId>
195+
</path>
196+
</annotationProcessorPaths>
197+
</configuration>
198+
</plugin>
199+
187200
<plugin>
188201
<groupId>org.jacoco</groupId>
189202
<artifactId>jacoco-maven-plugin</artifactId>
@@ -209,6 +222,14 @@
209222
<plugin>
210223
<groupId>org.springframework.boot</groupId>
211224
<artifactId>spring-boot-maven-plugin</artifactId>
225+
<configuration>
226+
<excludes>
227+
<exclude>
228+
<groupId>org.projectlombok</groupId>
229+
<artifactId>lombok</artifactId>
230+
</exclude>
231+
</excludes>
232+
</configuration>
212233
</plugin>
213234
</plugins>
214235
</build>

0 commit comments

Comments
 (0)