On 7/31/06, jan_bar <herkule9s 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
|