You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by jan_bar <he...@yahoo.com> on 2006/07/31 21:09:43 UTC

Maven2 command line reference

Hi,

I searched maven site and even used Google, but I cannot find any
documentation about maven command line switches. For instance "mvn -N
install", what is the meaning of the -N?

Thanks, Jan




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


Re: Maven2 command line reference

Posted by Tomasz Pik <to...@gmail.com>.
On 7/31/06, jan_bar <he...@yahoo.com> wrote:
> Hi,
>
> I searched maven site and even used Google, but I cannot find any
> documentation about maven command line switches. For instance "mvn -N
> install", what is the meaning of the -N?

you may get some base info with 'mvn --help':

$ mvn --help
usage: mvn [options] [<goal(s)>] [<phase(s)>]

Options:
[...]
 -N,--non-recursive            Do not recurse into sub-projects
[...]

So mvn -N install won't look into sub-projects and will install
only top project.

HTH,
Tomek

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