Skip to content

Commit

Permalink
Update to jdk21
Browse files Browse the repository at this point in the history
Before this fix, we use lombok-maven-plugin version 1.18.20.0 which use lombok 1.18.20 which is not compatible with jdk21.
This fix is a workaround waiting this pr to be merged : awhitford/lombok.maven#180 and a new artifact released
  • Loading branch information
rdenarie committed May 15, 2024
1 parent ae03e82 commit 6c5ac85
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<version.dependency.plugin>3.3.0</version.dependency.plugin>
<version.deploy.plugin>2.8.2</version.deploy.plugin>
<version.eclipse.plugin>2.10</version.eclipse.plugin>
<version.enforcer.plugin>3.3.0</version.enforcer.plugin>
<version.enforcer.plugin>3.4.1</version.enforcer.plugin>
<version.failsafe.plugin>${version.surefire.plugin}</version.failsafe.plugin>
<version.gmaven.plugin>1.5</version.gmaven.plugin>
<version.gmavenplus.plugin>1.5</version.gmavenplus.plugin>
Expand Down Expand Up @@ -151,6 +151,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<version.xml.plugin>1.0</version.xml.plugin>
<version.owasp.dependency-check-maven.plugin>3.2.0</version.owasp.dependency-check-maven.plugin>
<org.lombok.plugin.version>1.18.20.0</org.lombok.plugin.version>
<org.lombok.version>1.18.30</org.lombok.version>
<com.github.eirslett.frontend.version>1.15.0</com.github.eirslett.frontend.version>
<io.openapitools.swagger.version>2.1.6</io.openapitools.swagger.version>
<node.version>v16.0.0</node.version>
Expand All @@ -174,8 +175,8 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<!-- maven-clirr-plugin -->
<textOutputFile>${project.build.directory}/clirr-report.txt</textOutputFile>
<!-- maven-compiler-plugin -->
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<!-- maven-dependency-plugin -->
Expand Down Expand Up @@ -876,6 +877,13 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>${org.lombok.plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.lombok.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>generate-sources</phase>
Expand Down

0 comments on commit 6c5ac85

Please sign in to comment.