Skip to content

Commit

Permalink
Support newer JDKs for building
Browse files Browse the repository at this point in the history
Apparently the ancient version of lombok used
by a dependency is not compatible with newer
versions of java. As Vault proper did not make
use of lombok, it can be safely removed without
declaring an alternative.

This commit allows Vault to build under Java 17.
  • Loading branch information
Geolykt authored and cerealcable committed Jun 27, 2022
1 parent 8e7ca81 commit 2022cb0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,12 @@ Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms
<artifactId>craftconomy3</artifactId>
<version>3.2.2-SNAPSHOT</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.crystalyx.bukkit.simplyperms</groupId>
Expand Down

0 comments on commit 2022cb0

Please sign in to comment.