You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/03/19 17:29:42 UTC

svn commit: r1083210 - in /maven/site/trunk/src/site/apt/guides: mini/guide-archive-configuration.apt mini/guide-building-for-different-environments.apt mini/guide-ide-netbeans/guide-ide-netbeans.apt plugin/guide-java-plugin-development.apt

Author: hboutemy
Date: Sat Mar 19 16:29:42 2011
New Revision: 1083210

URL: http://svn.apache.org/viewvc?rev=1083210&view=rev
Log:
fixed typos

Modified:
    maven/site/trunk/src/site/apt/guides/mini/guide-archive-configuration.apt
    maven/site/trunk/src/site/apt/guides/mini/guide-building-for-different-environments.apt
    maven/site/trunk/src/site/apt/guides/mini/guide-ide-netbeans/guide-ide-netbeans.apt
    maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-archive-configuration.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-archive-configuration.apt?rev=1083210&r1=1083209&r2=1083210&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-archive-configuration.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-archive-configuration.apt Sat Mar 19 16:29:42 2011
@@ -8,7 +8,7 @@
 
 Guide to Configuring Archive Plugins
 
- Many Java archive generating plugins accept the <<<archive>>> configuration element to customise the generation of the archive.
+ Many Java archive generating plugins accept the <<<archive>>> configuration element to customize the generation of the archive.
  In the standard Maven Plugins, this includes the <<<jar>>>, <<<war>>>, <<<ejb>>>, <<<ear>>> and <<<assembly>>> plugins.
 
 * Disabling Maven Meta Information

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-building-for-different-environments.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-building-for-different-environments.apt?rev=1083210&r1=1083209&r2=1083210&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-building-for-different-environments.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-building-for-different-environments.apt Sat Mar 19 16:29:42 2011
@@ -114,20 +114,20 @@ src/
 
  [[3]] It configures the JAR plugin to create an "attached" JAR with the "test" classifier.
 
- To activate this profile execute <<<mvn -Ptest install>>>  and maven will execute the steps in the profile
+ To activate this profile execute <<<mvn -Ptest install>>>  and Maven will execute the steps in the profile
    in addition to the normal steps. From this build you will get two artifacts, "foo-1.0.jar" and "foo-1.0-test.jar".
    These two jars will identical.  
 
 Caveats
 
    * Currently Maven 2 doesn't allow a project build to only produce attached artifacts. (i.e. it has to produce a
-   "main" artifact as well) This results in two equal JARs beeing packaged and installed. The JAR plugin probably
+   "main" artifact as well) This results in two equal JARs being packaged and installed. The JAR plugin probably
    should also get improved support for this use case to that two different output directories will be used as the
    basis for building the JAR.
 
    * The usage of the delete task might seem a bit odd but is required to make sure that the copy task actually will
    copy the file. The copy task will look at the timestamps of the source and destination files, only when copying the
-   files it won't know that the actualy source file might be different than the last time it was executed.
+   files it won't know that the actually source file might be different than the last time it was executed.
 
    * After the build the test configuration will be in target/classes and won't be overridden because the resources
    plugin uses the same timestamp checking, so you should always do a clean after executing Maven with a profile.

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-ide-netbeans/guide-ide-netbeans.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-ide-netbeans/guide-ide-netbeans.apt?rev=1083210&r1=1083209&r2=1083210&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-ide-netbeans/guide-ide-netbeans.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-ide-netbeans/guide-ide-netbeans.apt Sat Mar 19 16:29:42 2011
@@ -1,18 +1,18 @@
     ------
-    Guide to Using maven 2 in Netbeans 4.0 (4.1 and 5.0)
+    Guide to Using Maven 2 in Netbeans 4.0 (4.1 and 5.0)
     ------
-    Rapha�l Pi�roni
+    Raphaël Piéroni
     ------
     Mon Aug 9 2005
     ------
 
-Using maven 2 in Netbeans 4.0 (4.1 and 5.0)
+Using Maven 2 in Netbeans 4.0 (4.1 and 5.0)
 
-    This mini guide explain by examples howto use Maven 2 in Netbeans IDE.
+    This mini guide explain by examples how to use Maven 2 in Netbeans IDE.
 
     To use Maven 2 in Netbeans you have to follow these steps:
 
-        * {{{RetreiveCreate_the_Maven_2_project}Retreive/Create the Maven 2 project.}}
+        * {{{RetreiveCreate_the_Maven_2_project}Retrieve/Create the Maven 2 project.}}
 
         * {{{Launch_Maven_2_in_command_line_using_the_netbeans-freeform_plugin}Launch Maven 2 in command line using the netbeans-freeform plugin.}}
 
@@ -28,7 +28,7 @@ Using maven 2 in Netbeans 4.0 (4.1 and 5
 
 
 
-* {Retreive/Create the Maven 2 project}
+* {Retrieve/Create the Maven 2 project}
 
     This guide assume the project is created using the archetype plugin. 
     You can also checkout the Maven 2 project using your versionning system.
@@ -100,10 +100,10 @@ Using maven 2 in Netbeans 4.0 (4.1 and 5
 
 * {Launch Maven 2 in command line using the netbeans-freeform plugin}
 
-    After having retreived the Maven 2 project, you have to eneable the project to 
+    After having retrieved the Maven 2 project, you have to enable the project to 
     be seen as a Netbeans 4.0, 4.1 or 5.0 project using the Netbeans Freeform project type.
 
-    To eneable the project, use the netbeans-freeform plugin for Maven 2.
+    To enable the project, use the netbeans-freeform plugin for Maven 2.
 
 -------------------
 [maven-user@mini-guide demoquickstart]$ mvn netbeans-freeform:generate-netbeans-project

Modified: maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt?rev=1083210&r1=1083209&r2=1083210&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt (original)
+++ maven/site/trunk/src/site/apt/guides/plugin/guide-java-plugin-development.apt Sat Mar 19 16:29:42 2011
@@ -196,7 +196,7 @@ mvn groupID:artifactID:version:goal
   "<<<mvn sample.plugin:hello-maven-plugin:1.0-SNAPSHOT:sayhi>>>" on the
   command line.
 
-  <<Tips>>: <<<version>>> is not requiered to run a standalone goal.
+  <<Tips>>: <<<version>>> is not required to run a standalone goal.
 
 *** Shortening the Command Line