pjfanning commented on PR #13961: URL: https://github.com/apache/iceberg/pull/13961#issuecomment-3243330175
I am not an expert on Gradle but why do you have a version for jackson-annotations, jackson-databind, etc? You import the jackson-bom - it has the versions. In Gradle, you can add a dependency on the bom (as a [platform](https://docs.gradle.org/current/userguide/platforms.html)) and then you can add a dependency on a jar and not give a version for the jar if the bom has the version for the jar. In one of your Gradle files, you have ``` testImplementation platform(libs.jackson.bom) testImplementation libs.jackson.annotations ``` Why not try this? ``` testImplementation platform(libs.jackson.bom) testImplementation 'com.fasterxml.jackson.core:jackson-annotations' ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
