codeconsole opened a new pull request, #16279: URL: https://github.com/apache/grails-core/pull/16279
`xml-apis:xml-apis` has not been reachable from any of these dependencies for several major versions, so the four exclusions are no-ops: - **`hibernate-core` 7.4.1.Final** and **`hibernate-core-jakarta` 5.6.15.Final** never declare `xml-apis`. Hibernate's own POM already excludes it from every one of its dependencies, and mapping XML has been bound with JAXB (`jakarta.xml.bind-api` + `jaxb-runtime`) since Hibernate 6 dropped dom4j. - **`commons-validator` 1.9.0** no longer pulls `commons-digester`/`xml-apis`. ### Verification With the exclusions removed, `dependencyInsight --dependency xml-apis` finds no match on `compileClasspath`, `runtimeClasspath`, or `testRuntimeClasspath` for any of the three modules, and the full resolved dependency graphs are byte-identical to before. The only publication change is the removal of three dead `<exclusion>` entries from the generated POMs (the fourth is on a `compileOnly` dependency, which is not published). `:grails-datamapping-validation:test`, `:grails-data-hibernate7-core:test` and `:grails-data-hibernate5-core:test` pass (3066 tests, 0 failures), and `aggregateStyleViolations` reports no Checkstyle or CodeNarc violations. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
