Skip to content

Commit ee1f271

Browse files
committed
fix: change lombok version for lombok-maven-plugin
1 parent fa33413 commit ee1f271

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

basyx.aasregistry/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
<properties>
1818
<lombok.maven-plugin.version>1.18.20.0</lombok.maven-plugin.version>
19+
<lombok.maven-plugin.lombok.version>1.18.30</lombok.maven-plugin.lombok.version>
1920
<maven.compiler.source>${java.version}</maven.compiler.source>
2021
<maven.compiler.target>${java.version}</maven.compiler.target>
2122
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -75,6 +76,13 @@
7576
<groupId>org.projectlombok</groupId>
7677
<artifactId>lombok-maven-plugin</artifactId>
7778
<version>${lombok.maven-plugin.version}</version>
79+
<dependencies>
80+
<dependency>
81+
<groupId>org.projectlombok</groupId>
82+
<artifactId>lombok</artifactId>
83+
<version>${lombok.maven-plugin.lombok.version}</version>
84+
</dependency>
85+
</dependencies>
7886
</plugin>
7987
<plugin>
8088
<groupId>org.apache.maven.plugins</groupId>
@@ -241,6 +249,13 @@
241249
<plugin>
242250
<groupId>org.projectlombok</groupId>
243251
<artifactId>lombok-maven-plugin</artifactId>
252+
<dependencies>
253+
<dependency>
254+
<groupId>org.projectlombok</groupId>
255+
<artifactId>lombok</artifactId>
256+
<version>${lombok.maven-plugin.lombok.version}</version>
257+
</dependency>
258+
</dependencies>
244259
<executions>
245260
<execution>
246261
<phase>generate-sources</phase>

basyx.submodelregistry/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
<properties>
1818
<lombok.maven-plugin.version>1.18.20.0</lombok.maven-plugin.version>
19+
<lombok.maven-plugin.lombok.version>1.18.30</lombok.maven-plugin.lombok.version>
1920
<maven.compiler.source>${java.version}</maven.compiler.source>
2021
<maven.compiler.target>${java.version}</maven.compiler.target>
2122
<generated.folder>src/generated</generated.folder>
@@ -71,6 +72,13 @@
7172
<groupId>org.projectlombok</groupId>
7273
<artifactId>lombok-maven-plugin</artifactId>
7374
<version>${lombok.maven-plugin.version}</version>
75+
<dependencies>
76+
<dependency>
77+
<groupId>org.projectlombok</groupId>
78+
<artifactId>lombok</artifactId>
79+
<version>${lombok.maven-plugin.lombok.version}</version>
80+
</dependency>
81+
</dependencies>
7482
</plugin>
7583
<plugin>
7684
<groupId>io.swagger.codegen.v3</groupId>
@@ -222,6 +230,13 @@
222230
<plugin>
223231
<groupId>org.projectlombok</groupId>
224232
<artifactId>lombok-maven-plugin</artifactId>
233+
<dependencies>
234+
<dependency>
235+
<groupId>org.projectlombok</groupId>
236+
<artifactId>lombok</artifactId>
237+
<version>${lombok.maven-plugin.lombok.version}</version>
238+
</dependency>
239+
</dependencies>
225240
<executions>
226241
<execution>
227242
<phase>generate-sources</phase>

0 commit comments

Comments
 (0)