slachiewicz commented on PR #207: URL: https://github.com/apache/maven-dist-tool/pull/207#issuecomment-5237344319
Checked the caveat above rather than leaving it open. Built the jar as it ships, then linked it against a full Maven **3.6.3** stack (85 jars, resolved with `mvn -Dmvnversion=3.6.3 dependency:build-classpath`): ``` jdeps --class-path "$(cat cp363.txt)" -recursive -verbose:class target/classes | grep -i "not found" ``` **Zero lines.** Every class dist-tool references resolves on 3.6.3, so nothing post-3.6.3 is in use and the lowered prerequisite is accurate. (Source-level compilation alone would not have proved this — javac can bind to an overload that only exists in the newer jar.) <sub>Drafted with Claude — please verify</sub> -- 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]
