Skip to content

Commit

Permalink
chore: use versions of byte-buddy compatible with java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Nov 4, 2023
1 parent 10ca9b0 commit 484536d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
<liquibase-slf4j.version>5.0.0</liquibase-slf4j.version>
<testcontainers.version>1.19.1</testcontainers.version>
<h2.version>2.2.224</h2.version>
<byte-buddy.version>1.14.9</byte-buddy.version>

<postgresql.version>42.6.0</postgresql.version>
<mysql.version>8.0.33</mysql.version>
Expand Down Expand Up @@ -214,6 +215,25 @@
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<!-- Ensure byte-buddy version compatible with java 21 are used -->
<!-- Dependencies using byte-buddy as a transitive dependencies: mockito, equalsverfier, assertj -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit 484536d

Please sign in to comment.