You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2010/07/25 19:24:56 UTC

svn commit: r979072 - /maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-lifecycle.apt

Author: bentmann
Date: Sun Jul 25 17:24:56 2010
New Revision: 979072

URL: http://svn.apache.org/viewvc?rev=979072&view=rev
Log:
o Polished docs

Modified:
    maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-lifecycle.apt

Modified: maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-lifecycle.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-lifecycle.apt?rev=979072&r1=979071&r2=979072&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-lifecycle.apt (original)
+++ maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-lifecycle.apt Sun Jul 25 17:24:56 2010
@@ -181,9 +181,10 @@ mvn clean dependency:copy-dependencies p
   complete list of goal-to-build-phase bindings of some of the packaging types, refer to the
   {{{Lifecycle_Reference}Lifecycle Reference}}).
 
-  Note that for some packaging types to be available, you may also need to include a particular plugin in your
-  <<<\<build\>>>> section of your POM (as described in the next section). One example of a plugin that requires this is the
-  Plexus plugin, which provides a <<<plexus-application>>> and <<<plexus-service>>> packaging.
+  Note that for some packaging types to be available, you may also need to include a particular plugin in the
+  <<<\<build\>>>> section of your POM and specify <<<\<extensions\>true\</extensions\>>>> for that plugin.
+  One example of a plugin that requires this is the Plexus plugin, which provides a <<<plexus-application>>> and
+  <<<plexus-service>>> packaging.
 
   <{{{./introduction-to-the-lifecycle.html}[top]}}.>
 
@@ -213,12 +214,14 @@ mvn clean dependency:copy-dependencies p
  <plugin>
    <groupId>org.codehaus.modello</groupId>
    <artifactId>modello-maven-plugin</artifactId>
-   <version>1.0-alpha-18</version>
+   <version>1.4</version>
    <executions>
      <execution>
        <configuration>
-         <model>maven.mdo</model>
-         <modelVersion>4.0.0</modelVersion>
+         <models>
+           <model>src/main/mdo/maven.mdo</model>
+         </models>
+         <version>4.0.0</version>
        </configuration>
        <goals>
          <goal>java</goal>
@@ -246,13 +249,13 @@ mvn clean dependency:copy-dependencies p
 ...
  <plugin>
    <groupId>com.mycompany.example</groupId>
-   <artifactId>maven-touch-plugin</artifactId>
+   <artifactId>display-maven-plugin</artifactId>
    <version>1.0</version>
    <executions>
      <execution>
        <phase>process-test-resources</phase>
        <goals>
-         <goal>timestamp</goal>
+         <goal>time</goal>
        </goals>
      </execution>
    </executions>