Skip to content

Commit

Permalink
Force lombok plugin to use our lombok version (#248)
Browse files Browse the repository at this point in the history
When trying to release kiwi, received error:

Unable to delombok: InvocationTargetException: Cannot read field
"bindingsWhenTrue" because "currentBindings" is null

This is a known error. For more details, see
awhitford/lombok.maven#98
  • Loading branch information
sleberknight authored Aug 7, 2023
1 parent 1719be0 commit 9923080
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,13 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>${lombok-maven-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>delombok</id>
Expand Down

0 comments on commit 9923080

Please sign in to comment.