Add integration test for Gradle dependency resolution and alignment #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This tests makes sure that dependency resolution with Gradle works as expected. In particular, it tests that the Jackson BOM becomes available as soon as there is a dependency to any Jackson module. This is made possible by publishing Gradle Module Metadata and by adding the
<!-- do_not_remove: published-with-gradle-metadata -->
marker comment to all pom files (see also FasterXML/jackson-databind#2726). This test therfore ensures that the marker is kept in all poms and that the corresponding.module
file is published.