Re: Invoke another Maven

2015-02-22 Thread Baptiste Mathus
Hi Dan, We're using https://github.com/TimMoore/mojo-executor for that and it's quite doing the job. HTH Cheers Le 21 févr. 2015 21:43, Dan Tran dant...@gmail.com a écrit : I have a need my maven to exec another maven build, but also inherit original argument as well ( ex pickup -s option )

Re: Fwd: Unable to create Maven Project using command Prompt

2015-02-22 Thread Dishant Anand
Hi Vipul, Can you please check your network connections.? If this is not the case you might be behind a proxy and In order to sort that try adding following part into the settings.xml This file settings.xml is generally present under your .m2 folder under your user home directory. If one is

Dependency Management versus Dependencies

2015-02-22 Thread Dishant Anand
Hi Team, Can somebody please explain me what is the difference between using a dependency in dependency management and dependency in dependencies .? We have one project where some dependencies in parent pom are defined under the dependency management while other are defined under the

Re: Dependency Management versus Dependencies

2015-02-22 Thread David Hoffer
dependencyManagement does not create dependencies like the dependencies section does. Rather what dependencyManagement does is specify the version and/or other configuration of actual dependencies specified in dependencies sections or transitive dependencies. -Dave On Sun, Feb 22, 2015 at 12:17

Re: Invoke another Maven

2015-02-22 Thread Dan Tran
Not sure if that plugin works for me ( will try ) where I am using exec-maven-plugin:exec to invoke another maven instance. The problem is the new instance knows nothing about the command line arguments available at the main Maven Thoughts? -D On Sun, Feb 22, 2015 at 1:15 AM, Baptiste Mathus

Re: Dependency Management versus Dependencies

2015-02-22 Thread Dishant Anand
That was really very helpful.Thanks Dave On 22/02/2015 19:56, David Hoffer wrote: dependencyManagement does not create dependencies like the dependencies section does. Rather what dependencyManagement does is specify the version and/or other configuration of actual dependencies specified in