Achow
Achow

Reputation: 8678

Difference between 2 maven repositories

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

Answers (1)

Chao Luo
Chao Luo

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 enter image description here

more about the plugin

Upvotes: 1

Related Questions