griffindvs commented on PR #4376: URL: https://github.com/apache/cassandra/pull/4376#issuecomment-3300109235
Hi @smiklosovic , @michaelsembwever helped me run: ``` ant jar mvn dependency:tree -f build/tmp-apache-cassandra-5.0.6-SNAPSHOT-deps.pom ``` which led me to find: ``` [INFO] Artifact com.github.tomakehurst:wiremock-jre8:pom:2.35.0 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [apache.snapshots (https://repository.apache.org/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)] [INFO] Artifact com.github.tomakehurst:wiremock-jre8:pom:2.35.0 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [apache.snapshots (https://repository.apache.org/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)] Downloading from central: https://repo.maven.apache.org/maven2/com/github/tomakehurst/wiremock-jre8/2.35.0/wiremock-jre8-2.35.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/github/tomakehurst/wiremock-jre8/2.35.0/wiremock-jre8-2.35.0.pom (0 B at 0 B/s) [INFO] Artifact org.eclipse.jetty:jetty-bom:pom:9.4.49.v20220914 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadabl e from [apache.snapshots (https://repository.apache.org/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)] [INFO] Artifact org.eclipse.jetty:jetty-bom:pom:9.4.49.v20220914 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadabl e from [apache.snapshots (https://repository.apache.org/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)] Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.49.v20220914/jetty-bom-9.4.49.v20220914.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.49.v20220914/jetty-bom-9.4.49.v20220914.pom (0 B at 0 B/s) [INFO] Artifact com.fasterxml.jackson:jackson-bom:pom:2.13.4.20221013 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downlo adable from [apache.snapshots (https://repository.apache.org/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)] [INFO] Artifact com.fasterxml.jackson:jackson-bom:pom:2.13.4.20221013 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downlo adable from [apache.snapshots (https://repository.apache.org/snapshots, default, snapshots), central (https://repo.maven.apache.org/maven2, default, releases)] Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4.20221013/jackson-bom-2.13.4.20221013.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4.20221013/jackson-bom-2.13.4.20221013.pom (0 B at 0 B/s) ``` This is the only reference to an older version of jackson that I see (I don't see 2.11 anywhere in here). This log output led me to look at wiremock 2.35.0 which uses jackson 2.13.4: https://github.com/wiremock/wiremock/blob/2.35.0/build.gradle#L31 I'm not sure if this helps identify where `build/test/lib/jars/jackson-databind-2.11.3.jar` is coming from though. -- 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]

