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 2008/05/30 13:43:04 UTC

svn commit: r661662 - /maven/plugins/trunk/maven-invoker-plugin/src/site/apt/examples/fast-use.apt

Author: bentmann
Date: Fri May 30 04:43:03 2008
New Revision: 661662

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

Modified:
    maven/plugins/trunk/maven-invoker-plugin/src/site/apt/examples/fast-use.apt

Modified: maven/plugins/trunk/maven-invoker-plugin/src/site/apt/examples/fast-use.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/site/apt/examples/fast-use.apt?rev=661662&r1=661661&r2=661662&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/src/site/apt/examples/fast-use.apt (original)
+++ maven/plugins/trunk/maven-invoker-plugin/src/site/apt/examples/fast-use.apt Fri May 30 04:43:03 2008
@@ -18,7 +18,7 @@
   versions are locked in the super POM. For older versions, you have to lock plugins versions.
   
   To enable this feature, you have to add a <<<settings.xml>>> file in your project (for example in <<<src/it/settings.xml>>>)
-  and modify the plugin configuration as this :  
+  and modify the plugin configuration as this:  
   
 -------------------
 <project>
@@ -41,7 +41,7 @@
 </project>
 -------------------
 
-  The settings must contains the following content :
+  The settings must contain the following content:
   
 -------------------
 <?xml version="1.0"?>
@@ -51,7 +51,7 @@
       <id>it-repo</id>
       <activation>
         <activeByDefault>true</activeByDefault>
-      </activation>      
+      </activation>
       <repositories>
         <repository>
           <id>local.central</id>
@@ -60,9 +60,9 @@
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>             
-        </repository>        
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
       </repositories>
       <pluginRepositories>
         <pluginRepository>
@@ -72,8 +72,8 @@
             <enabled>true</enabled>
           </releases>
           <snapshots>
-            <enabled>false</enabled>
-          </snapshots>          
+            <enabled>true</enabled>
+          </snapshots>
         </pluginRepository>
       </pluginRepositories>
     </profile>
@@ -81,5 +81,3 @@
 </settings>
 -------------------  
   
-
-          
\ No newline at end of file