Skip to content

Commit ea2ff5e

Browse files
committed
#121 Add Lombok to Compiler's Annotation Processors
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent 3676ec6 commit ea2ff5e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
<com.fasterxml.jackson.version>2.16.1</com.fasterxml.jackson.version>
7777
<org.springframework.version>5.3.29</org.springframework.version>
7878
<org.mockito.version>5.10.0</org.mockito.version>
79+
<lombok.version>1.18.30</lombok.version>
7980
</properties>
8081

8182
<dependencyManagement>
@@ -131,7 +132,7 @@
131132
<dependency>
132133
<groupId>org.projectlombok</groupId>
133134
<artifactId>lombok</artifactId>
134-
<version>1.18.30</version>
135+
<version>${lombok.version}</version>
135136
<scope>provided</scope>
136137
</dependency>
137138

@@ -234,6 +235,13 @@
234235
<showWarnings>true</showWarnings>
235236
<showDeprecation>true</showDeprecation>
236237
<compilerArgument>-Xlint:unchecked</compilerArgument>
238+
<annotationProcessorPaths>
239+
<path>
240+
<groupId>org.projectlombok</groupId>
241+
<artifactId>lombok</artifactId>
242+
<version>${lombok.version}</version>
243+
</path>
244+
</annotationProcessorPaths>
237245
</configuration>
238246
</plugin>
239247

0 commit comments

Comments
 (0)