Open gilbertoca opened 3 years ago
Hi,
The plugin will show you every plugins that would be executed if you run a mvn deploy
by default.
In your example it shows you that the maven-compiler-plugin
will indeed be run twice, one time to compile your production code and one more time to compile your test code.
I don't know what is the purpose of javafx-maven-plugin
but if it doesn't show up, this is certainly because there is no execution bind to a pre-defined phase by default. Nothing is executed by this plugin when you run mvn deploy
.
You can find some examples on http://buildplan.jcgay.fr/usage.html.
Hopes that help, let me know :)
see also #33, which is another consequence of what is in the build plan and what is not
Hi, this is more a question. In my project I have only defined two plugins:
But the list-plugin goal shows nothing about them:
Perhaps I didn't understand the plugin usage? Shouldn't it list only the defined one, two in this case? Thank you!