ams
ams

Reputation: 62652

Can maven report if there are newer versions of a dependency automatically?

Is there a maven command that can analyze a given pom.xml and report if there are newer versions of plugins or dependencies.

For example suppose that the pom.xml depends on hibernate 4.1.6 and hibernate 4.1.7 is released is there a command that can analyze the pom.xml and print out something along the lines, you are using hibernate 4.1.6 and the latest version is 4.1.7?

Upvotes: 0

Views: 70

Answers (1)

Chuidiang
Chuidiang

Reputation: 1055

Check Versions Maven Plugin goals version-display-* and versions-use-*

Upvotes: 3

Related Questions