Skip to content

Commit 9a840c8

Browse files
committed
build: configure lombok annotation processor path
1 parent b9801f7 commit 9a840c8

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
<jetty.version>9.4.36.v20210114</jetty.version>
1919
<flowingcode.commons.demo.version>3.10.0</flowingcode.commons.demo.version>
20+
<lombok.version>1.18.46</lombok.version>
2021
</properties>
2122
<organization>
2223
<name>Flowing Code S.A.</name>
@@ -144,7 +145,7 @@
144145
<groupId>org.projectlombok</groupId>
145146
<artifactId>lombok</artifactId>
146147
<scope>provided</scope>
147-
<version>1.18.46</version>
148+
<version>${lombok.version}</version>
148149
</dependency>
149150
<dependency>
150151
<groupId>com.flowingcode.vaadin</groupId>
@@ -189,6 +190,20 @@
189190
<defaultGoal>jetty:run</defaultGoal>
190191
<pluginManagement>
191192
<plugins>
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-compiler-plugin</artifactId>
196+
<version>3.13.0</version>
197+
<configuration>
198+
<annotationProcessorPaths>
199+
<path>
200+
<groupId>org.projectlombok</groupId>
201+
<artifactId>lombok</artifactId>
202+
<version>${lombok.version}</version>
203+
</path>
204+
</annotationProcessorPaths>
205+
</configuration>
206+
</plugin>
192207
<plugin>
193208
<groupId>org.apache.maven.plugins</groupId>
194209
<artifactId>maven-release-plugin</artifactId>

0 commit comments

Comments
 (0)