install and deploy are redundant. If you look at the Maven lifecycle (http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html), then all targets before the one you selected will be executed. So a deploy calls also call install before. If you choose deploy, then you don't need to execute install separately before.
Manuel On Wed, Apr 6, 2011 at 15:33, Novak Dalibor <[email protected]> wrote: > a "mvn clean install deploy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
