Skip to content

Commit

Permalink
Merge pull request #23321 from Sanne/BBVersion
Browse files Browse the repository at this point in the history
Let the ByteBuddy library version be controlled by the BOM
  • Loading branch information
geoand authored Feb 1, 2022
2 parents 49b1230 + 55ebd19 commit 651c3d3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-codec.version>1.15</commons-codec.version>
<classmate.version>1.5.1</classmate.version>
<hibernate-orm.version>5.6.5.Final</hibernate-orm.version>
<hibernate-orm.version>5.6.5.Final</hibernate-orm.version> <!-- When updating, align bytebuddy.version to Hibernate needs as well (just below): -->
<bytebuddy.version>1.12.7</bytebuddy.version> <!-- Version controlled by Hibernate ORM's needs -->
<hibernate-reactive.version>1.1.2.Final</hibernate-reactive.version>
<hibernate-validator.version>6.2.1.Final</hibernate-validator.version>
<hibernate-search.version>6.1.0.Final</hibernate-search.version>
Expand Down Expand Up @@ -2677,6 +2678,15 @@

<!-- External dependencies -->

<!-- Normally controlled by Hibernate ORM upstream,
but making the version of ByteBuddy explicit so that this BOM can control the version
in case of conflicts with other libraries -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${bytebuddy.version}</version>
</dependency>

<!-- GRPC dependency -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand Down

0 comments on commit 651c3d3

Please sign in to comment.