Reputation: 8678
2 Maven Repositories - repA, repB. repA is getting decommissioned. Multiple applications depend currently on both repA,repB.
What is the quickest way to identify jars which are on repA but not on repB ? Also, would be perfect if repA and repB have the same versions of a given jar- we can compare the md5 so that we can show diffs & prompt those applications for additional testing.
Alternative solution might be show all jars(version,md5) under a repository.
Upvotes: 2
Views: 658
Reputation: 2696
mvn project-info-reports:dependencies
this will generate a reporting html in /target/site/dependencies.html
you can check the information in Dependency Repository Locations
Upvotes: 1