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-plugin
     ${versions-plugin.version}
     
     classpath:///rules.xml
     
     
     
     versionrules
     versionrules
     1-SNAPSHOT
     
     


But this configuration is not used if I run the Versions Maven Plugin in 
the same directory as the pom.xml. The only way to my own configuration 
is to put this plugin configuration in a profil and execute this profil 
during the Maven run.


Is there a way to run the Versions plugin on the commandline and to 
configure it via the pom.xml?


Bye,

Oliver

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



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

2018-06-13 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 configuration for command line in the 
pom file:


Just by simply separating them by different id

 

  
org.codehaus.mojo
versions-maven-plugin
2.5.

  
default-cli

  ...

  
  
second-cli

   

  

  

  



[1]: https://maven.apache.org/docs/3.3.1/release-notes.html

On 13/06/18 08:08, Anders Hammar wrote:

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 dependencies.
Therefore I added the following lines to my pom.xml:


  org.codehaus.mojo
  versions-maven-plugin
  ${versions-plugin.version}
  
  classpath:///rules.xml
  
  
  
  versionrules
  versionrules
  1-SNAPSHOT
  
  


But this configuration is not used if I run the Versions Maven Plugin in
the same directory as the pom.xml. The only way to my own configuration
is to put this plugin configuration in a profil and execute this profil
during the Maven run.

Is there a way to run the Versions plugin on the commandline and to
configure it via the pom.xml?

Bye,

Oliver

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



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

2018-06-13 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 dependencies.
> Therefore I added the following lines to my pom.xml:
>
> 
>  org.codehaus.mojo
>  versions-maven-plugin
>  ${versions-plugin.version}
>  
>  classpath:///rules.xml
>  
>  
>  
>  versionrules
>  versionrules
>  1-SNAPSHOT
>  
>  
> 
>
> But this configuration is not used if I run the Versions Maven Plugin in
> the same directory as the pom.xml. The only way to my own configuration
> is to put this plugin configuration in a profil and execute this profil
> during the Maven run.
>
> Is there a way to run the Versions plugin on the commandline and to
> configure it via the pom.xml?
>
> Bye,
>
> Oliver
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>