Skip to content

Commit 061adee

Browse files
authored
[JENKINS-71921] Updates Lombok and Lombok maven plugin versions to 1.18.30(.1) (#414)
1 parent 16f3070 commit 061adee

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
buildPlugin(useContainerAgent: true, configurations: [
2-
[platform: 'linux', jdk: 17],
3-
[platform: 'windows', jdk: 11],
2+
[platform: 'linux', jdk: 21],
3+
[platform: 'windows', jdk: 17],
44
])

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
<hpi.compatibleSinceVersion>4.1.0</hpi.compatibleSinceVersion>
8181
<concurrency>10</concurrency>
8282
<it.runOrder>balanced</it.runOrder>
83+
<lombok.version>1.18.30</lombok.version>
8384
<delombok.output>${project.build.directory}/delombok</delombok.output>
8485
<spotless.check.skip>false</spotless.check.skip>
8586
</properties>
@@ -257,7 +258,7 @@
257258
<dependency>
258259
<groupId>org.projectlombok</groupId>
259260
<artifactId>lombok</artifactId>
260-
<version>1.18.28</version>
261+
<version>${lombok.version}</version>
261262
<scope>provided</scope>
262263
</dependency>
263264
<dependency>
@@ -334,6 +335,16 @@
334335
<outputDirectory>${delombok.output}</outputDirectory>
335336
<addOutputDirectory>false</addOutputDirectory>
336337
</configuration>
338+
<dependencies>
339+
<dependency>
340+
<!--
341+
TODO: Until https://github.com/awhitford/lombok.maven/pull/180 is merged and release
342+
-->
343+
<groupId>org.projectlombok</groupId>
344+
<artifactId>lombok</artifactId>
345+
<version>${lombok.version}</version>
346+
</dependency>
347+
</dependencies>
337348
<executions>
338349
<execution>
339350
<goals>

0 commit comments

Comments
 (0)