You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/07/15 13:07:24 UTC

svn commit: r676870 - in /maven/site/trunk/src/site: fml/general.fml fml/maven1.fml xdoc/docs-required.xml

Author: vsiveton
Date: Tue Jul 15 04:07:23 2008
New Revision: 676870

URL: http://svn.apache.org/viewvc?rev=676870&view=rev
Log:
o fixed typo

Modified:
    maven/site/trunk/src/site/fml/general.fml
    maven/site/trunk/src/site/fml/maven1.fml
    maven/site/trunk/src/site/xdoc/docs-required.xml

Modified: maven/site/trunk/src/site/fml/general.fml
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/fml/general.fml?rev=676870&r1=676869&r2=676870&view=diff
==============================================================================
--- maven/site/trunk/src/site/fml/general.fml (original)
+++ maven/site/trunk/src/site/fml/general.fml Tue Jul 15 04:07:23 2008
@@ -85,7 +85,7 @@
       <answer>
         <p>
           You must configure the source and target parameters in your pom. For example, to set the source and
-          target JVM to 1.5, you should have in your pom :
+          target JVM to 1.5, you should have in your pom:
         </p>
         <source>
   ...

Modified: maven/site/trunk/src/site/fml/maven1.fml
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/fml/maven1.fml?rev=676870&r1=676869&r2=676870&view=diff
==============================================================================
--- maven/site/trunk/src/site/fml/maven1.fml (original)
+++ maven/site/trunk/src/site/fml/maven1.fml Tue Jul 15 04:07:23 2008
@@ -151,8 +151,7 @@
       <answer>
         <p>Taken from
           <a href="http://mail-archives.apache.org/mod_mbox/maven-users/200504.mbox/%3c1113788711.5625.30.camel@172.16.1.36%3e">
-            this post to the Maven User's List</a>
-          :
+            this post to the Maven User's List</a>:
         </p>
         <blockquote>
           Everything in m2 is a plugin so for doing any sort of custom work like

Modified: maven/site/trunk/src/site/xdoc/docs-required.xml
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/xdoc/docs-required.xml?rev=676870&r1=676869&r2=676870&view=diff
==============================================================================
--- maven/site/trunk/src/site/xdoc/docs-required.xml (original)
+++ maven/site/trunk/src/site/xdoc/docs-required.xml Tue Jul 15 04:07:23 2008
@@ -104,7 +104,7 @@
       <pre><![CDATA[
 it's possible to do it with m2 beta-1 and profiles.
 
-you declare profile in your pom like this :
+you declare profile in your pom like this:
 
    <profiles>
      <profile>
@@ -133,7 +133,7 @@
      </profile>
    </profiles>
 
-and you can run mvn with one of profiles like :
+and you can run mvn with one of profiles like:
 mvn -P env-production clean:clean install ==> we use the profile id
 or
 mvn -Denv=test clean:clean install ==> we use the property env define in