mvn versions:display-plugin-updates
displays a line
Plugins require minimum Maven version of: 3.9.1
I write a plugin and I want to provide also version of maven it works with so that it shows up in versions plugin. How can I do this???
mvn versions:display-plugin-updates
displays a line
Plugins require minimum Maven version of: 3.9.1
I write a plugin and I want to provide also version of maven it works with so that it shows up in versions plugin. How can I do this???
Copyright © 2021 Jogjafile Inc.
Please use
prerequisites
in your plugin project.It is also good practice to use the same version of Maven Plugin Api and other Maven core artifacts.
So project can look like: