Skip to content

Commit

Permalink
Manage byte-buddy version in order to support build with JDK 21
Browse files Browse the repository at this point in the history
fix #1039
  • Loading branch information
slawekjaranowski committed Jan 13, 2024
1 parent 5b172d4 commit 991e096
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
<fluidoVersion>${maven-fluido-skin.version}</fluidoVersion>
<modelloNamespaceRuleVersion>2.1.0</modelloNamespaceRuleVersion>
<modelloNamespaceReportVersion>2.0.0</modelloNamespaceReportVersion>
<byteBuddyVersion>1.14.11</byteBuddyVersion>
<scmpublish.content>${project.build.directory}/staging/versions</scmpublish.content>
<!-- mono-module doesn't require site:stage for scm-publish -->
<project.build.outputTimestamp>2023-11-17T00:00:27Z</project.build.outputTimestamp>
Expand Down Expand Up @@ -328,6 +329,18 @@
<artifactId>plexus-archiver</artifactId>
<version>4.9.1</version>
</dependency>

<!-- JDK 21 support -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byteBuddyVersion}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>${byteBuddyVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 991e096

Please sign in to comment.