0

I experienced that the Maven Versions plugin does not check every version property when running mvn versions:display-property-updates. It is noticeable that most of them are plugins.

Matthias
  • 7,432
  • 6
  • 55
  • 88

1 Answers1

0

There may be some dependencies defined in profiles. These can only be checked by the versions plugin if these profiles are also activated.

mvn -Pmyprofile versions:display-property-updates
Matthias
  • 7,432
  • 6
  • 55
  • 88