mengCareers opened a new pull request #27177: [SPARK-30491] Enable dependency audit files to tell dependency classifier URL: https://github.com/apache/spark/pull/27177 ### What changes were proposed in this pull request? Enable dependency audit files to tell dependency classifier. For example, `avro-mapred-1.8.2-hadoop2.jar` should be expanded to `avro-mapred/1.8.2/avro-mapred-1.8.2-hadoop2.jar` where `avro-mapred` is artifact id, `1.8.2` is version. Given that, it is clear that `hadoop2` should be the classifier. ### Why are the changes needed? Dependency audit files under `dev/deps` only show jar names. As a result, it is not trivial to figure out the dependency classifiers. For example, `avro-mapred-1.8.2-hadoop2.jar` is made up of artifact id `avro-mapred`, version `1.8.2`, and classifier `hadoop2`. In contrast, `htrace-core-3.1.0-incubating.jar` is made up of artifact id `htrace-core`, and version `3.1.0-incubating.jar`. All in all, the classifier can't be told from its position in jar name, however, as part of the identifier of dependency, it should be clearly figured out. ### Does this PR introduce any user-facing change? No. ### How was this patch tested? Code changes are verified by generated dependency audit files naturally. Thus, there are no tests added.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
