Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let the ByteBuddy library version be controlled by the BOM #23321

Merged
merged 1 commit into from
Feb 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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