...
Beta and alpha release suggested as upgrades should be ignored (although there are sometimes other releases between current and the beta which may warrant an upgrade). One way of cutting down this clutter is to constrain the updates the versions
plugin will show you. For example, to show only patch updates (assuming semantic versioning) you can say:
Code Block |
---|
mvn versions:display-dependency-updates -DallowAnyUpdates=false -DallowMajorUpdates=false -DallowMinorUpdates=false |
Note that these options are hierarchical: allowAnyUpdates
must be disabled before allowMajorUpdates
has any effect, and so forth.
Test scopes can usually be upgraded easily, equally minor revisions.
...