versions icon indicating copy to clipboard operation
versions copied to clipboard

Versions Maven Plugin

Results 165 versions issues
Sort by recently updated
recently updated
newest added

I'm writing a CI script to update properties that define versions to the latest stable version, but without breaking the build -- so major updates are not allowed. `mvn versions:update-properties...

According to this blog, http://blog.soebes.de/blog/2017/02/04/apache-maven-how-version-comparison-works/ Maven now supports more than 3 segments. However the versions plug-in immediately dies with `[ERROR] Failed to execute goal use-latest-versions (default-cli) on project mdm: Execution...

Not really sure why this happens, but when using a version rules file with the `property-updates-report` target, the report generation is very slow. I tried to implement a workaround in...

This was identified as a performance hotspot and the result is static for each run, adding a cache dramatically speeds up some executions. This is probably not the correct solution,...

I have a structure: parent/pom.xml parent/child/pom.xml When a plugin in the parent version is not in the build.pluginManagement.plugins.plugin element, it is not picked up by version:display-plugin-updates in the child. tested...

Currently the goal `display-plugin-updates` only shows updates for plugins bound in the current project's lifecycle and plugins listed in the effective model in build->plugins->plugin (see https://github.com/mojohaus/versions-maven-plugin/blob/c0589f4a69afc1a53d8f2d461f621339fd0c0710/src/main/java/org/codehaus/mojo/versions/DisplayPluginUpdatesMojo.java#L380). In some cases one...

enhancement

This may also relate to #148. I have the following warnings, despite having the version correctly set: ``` [WARNING] The following plugins do not have their version specified: [WARNING] com.github.glhez:eclipse-settings-maven-plugin...

XML format was introduced for plugin and dependency update reports in #112/#93. However it is rather common and convenient to specify version as a property especially when you a working...

The 3 parameters `allowIncrementalUpdates`, `allowMajorUpdates` and `allowMinorUpdates` are mutually exclusive. if I enable major updates (`allowMajorUpdates=true`)and there is no one it should show me the minor or the incremental updates,...

It would be great to have an option thats limits version checks for a single dependency (or a group, or a group pattern). Especially for large projects or slow repositories...