1

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?

blahdiblah
  • 33,069
  • 21
  • 98
  • 152

3 Answers3

3

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
Behe
  • 7,572
  • 3
  • 33
  • 46
khmarbaise
  • 92,914
  • 28
  • 189
  • 235
1

check out IVY

Apache Ivy brings the dependency management advantages of Apache Maven™ to Apache Ant build files

Aram Arabyan
  • 2,339
  • 1
  • 17
  • 30
0

For maven, use maven-versions-plugin to find out if new version of dependencies is available.

mvn versions:display-dependency-updates