Skip to content
This repository was archived by the owner on Jan 10, 2026. It is now read-only.

Commit ac6a090

Browse files
committed
Make Java 25 compliant
1 parent 752951e commit ac6a090

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<maven.compiler.release>25</maven.compiler.release>
2828
<maven.compiler.source>25</maven.compiler.source>
2929
<maven.compiler.target>25</maven.compiler.target>
30+
<lombok.version>1.18.42</lombok.version>
3031
</properties>
3132

3233
<modules>
@@ -144,7 +145,7 @@
144145
<dependency>
145146
<groupId>org.projectlombok</groupId>
146147
<artifactId>lombok</artifactId>
147-
<version>1.18.42</version>
148+
<version>${lombok.version}</version>
148149
<scope>provided</scope>
149150
</dependency>
150151

@@ -157,6 +158,15 @@
157158
<groupId>org.apache.maven.plugins</groupId>
158159
<artifactId>maven-compiler-plugin</artifactId>
159160
<version>3.14.1</version>
161+
<configuration>
162+
<annotationProcessorPaths>
163+
<path>
164+
<groupId>org.projectlombok</groupId>
165+
<artifactId>lombok</artifactId>
166+
<version>${lombok.version}</version>
167+
</path>
168+
</annotationProcessorPaths>
169+
</configuration>
160170
</plugin>
161171
<plugin>
162172
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)