Index: maven-in-five-minutes.apt =================================================================== --- maven-in-five-minutes.apt (revision 926045) +++ maven-in-five-minutes.apt (working copy) @@ -35,7 +35,7 @@ On your command line, execute the following Maven goal: ------- -mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app +mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false ------- - You will notice that the goal created a directory with the same name given as the + You will notice that the goal created a directory with the same name given as the artifactId. Change into that directory. ------- @@ -104,10 +104,10 @@ ** What did I just do? - You executed the Maven goal , and passed in various parameters to that goal. + You executed the Maven goal , and passed in various parameters to that goal. The prefix is the {{{../../plugins/index.html}plugin}} that contains the goal. If you are familiar with {{{http://ant.apache.org}Ant}}, you - may concieve of this as similar to a task. This goal created a simple project based upon an archetype. + may conceive of this as similar to a task. This goal created a simple project based upon an archetype. Suffice it to say for now that a is a collection of with a general common purpose. For example the jboss-maven-plugin, whose purpose is "deal with various jboss items". @@ -131,7 +131,7 @@ [INFO] ------------------------------------------------------------------------ ------- - Unlike the first command executed () you may notice the second is simply + Unlike the first command executed () you may notice the second is simply a single word - . Rather than a goal, this is a . A phase is a step in the {{{../introduction/introduction-to-the-lifecycle.html}build lifecycle}}, which is an ordered sequence of phases. When a phase is given, Maven will execute every phase in the sequence