Reputation: 23
I have a list of jar files. I want to check whether any new version is available. One way to do so is to check one by one. I was wondering if there is a another shorter way of doing it?
Upvotes: 2
Views: 3041
Reputation: 97527
If this question is really Maven related, this can be achieved by using the versions-maven-plugin. Go into your project an do the following on command line:
mvn versions:display-dependency-updates
Upvotes: 3
Reputation: 2359
check out IVY
Apache Ivy brings the dependency management advantages of Apache Maven™ to Apache Ant build files
Upvotes: 1
Reputation:
For maven, use maven-versions-plugin to find out if new version of dependencies is available.
mvn versions:display-dependency-updates
Upvotes: 0