forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix some wonky dependency exclusions in Hibernate ORM/Reactive/Search…
… extensions 1. It makes no sense to exclude a transitive dependency if its version is managed and we re-declare that dependency ourselves two lines below. 2. jakarta.xml.bind-api and jakarta.activation-api are not banned at all, are actually transitive dependencies of hibernate-core and hibernate-jpamodelgen, and have their version managed in our BOM. So there's no need to exclude these transitive dependencies or to declare them when we don't use them directly. 3. jakarta.activation-api is a dependency of jakarta.xml.bind-api, so there's no point excluding jakarta.activation-api if the same module is going to depend on jakarta.xml.bind-api. 4. org.jboss:jandex (old artifact) is no longer a dependency of Hibernate ORM, so we don't need to exclude it. 5. io.smallrye:jandex (new artifact) is never required as a runtime dependency of Hibernate ORM, so it should be excluded directly in the BOM.
- Loading branch information
Showing
7 changed files
with
5 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters