How to compare and update libraries in local Maven repository -
i'm looking way compare possibly update (i.e. newer versions of) libraries/plugins (a) used given business project of mine or (b) stored in local repository, against remote repository.
for example illustrate use case "(b)", application has been using some-lib-1.1 time. 1 day some-lib-1.2 gets available. since application can use many libraries, i'd automated tool compares versions of libraries used given project against ones available in configured remote repositories. tool generate report such : "for library 'some-lib', use version '1.1', newer available versions are: '1.1.1', 1.2'"
does maven support this? how can achieve this?
thank time.
you should take @ maven versions plugin. can create reports it. take here.
Comments
Post a Comment