Re: When does a Maven plugin uses the POM in the current directory?

2018-06-16 Thread Oliver B. Fischer
Thank you all for your support. Now it works as I need it. Am 12.06.18 um 17:20 schrieb Oliver B. Fischer: Dear all, I use the Versions Maven Plugin to check for updates of my dependencies. Therefore I added the following lines to my pom.xml:     org.codehaus.mojo     versions-maven-plugi

Re: When does a Maven plugin uses the POM in the current directory?

2018-06-12 Thread Karl Heinz Marbaise
Hi, you can do that in different flavours.. by using an execution id like `default-cli` this will be used during the execution on command line (using the current configuration) furthermore since Maven 3.3.1 you can use things like[1]: mvn version:set@Id which means you can do a different co

Re: When does a Maven plugin uses the POM in the current directory?

2018-06-12 Thread Anders Hammar
If you put the configuration of the plugin within the pluginManagement section of the pom, it will be used if you execute the plugin from command line. /Anders On Tue, Jun 12, 2018 at 5:21 PM Oliver B. Fischer wrote: > Dear all, > > I use the Versions Maven Plugin to check for updates of my dep