You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2006/06/18 00:08:21 UTC

svn commit: r415074 - in /maven/plugins/trunk: maven-idea-plugin/src/site/apt/ maven-jar-plugin/src/site/apt/ maven-project-info-reports-plugin/src/site/apt/ maven-project-info-reports-plugin/src/test/java/org/apache/maven/report/projectinfo/ maven-war...

Author: dennisl
Date: Sat Jun 17 15:08:20 2006
New Revision: 415074

URL: http://svn.apache.org/viewvc?rev=415074&view=rev
Log:
[MNG-1395] Change all m2.bat and m2 references in sources to mvn.bat and mvn

Modified:
    maven/plugins/trunk/maven-idea-plugin/src/site/apt/howto.apt
    maven/plugins/trunk/maven-jar-plugin/src/site/apt/howto.apt
    maven/plugins/trunk/maven-project-info-reports-plugin/src/site/apt/howto.apt
    maven/plugins/trunk/maven-project-info-reports-plugin/src/test/java/org/apache/maven/report/projectinfo/AbstractMavenReportTestCase.java
    maven/plugins/trunk/maven-war-plugin/src/site/apt/howto.apt

Modified: maven/plugins/trunk/maven-idea-plugin/src/site/apt/howto.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-idea-plugin/src/site/apt/howto.apt?rev=415074&r1=415073&r2=415074&view=diff
==============================================================================
--- maven/plugins/trunk/maven-idea-plugin/src/site/apt/howto.apt (original)
+++ maven/plugins/trunk/maven-idea-plugin/src/site/apt/howto.apt Sat Jun 17 15:08:20 2006
@@ -8,7 +8,7 @@
 
 How to Use
 
-  You can directly use this plugin without configuring anything using the command "m2 idea:idea".   
+  You can directly use this plugin without configuring anything using the command "mvn idea:idea".   
   
   To configure what JDK name  you want to use, you must specify the parameter "jdkName" in the pom.xml  
  

Modified: maven/plugins/trunk/maven-jar-plugin/src/site/apt/howto.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-jar-plugin/src/site/apt/howto.apt?rev=415074&r1=415073&r2=415074&view=diff
==============================================================================
--- maven/plugins/trunk/maven-jar-plugin/src/site/apt/howto.apt (original)
+++ maven/plugins/trunk/maven-jar-plugin/src/site/apt/howto.apt Sat Jun 17 15:08:20 2006
@@ -13,7 +13,7 @@
   using the command below from your project:
 
 -------------------
-  m2 package
+  mvn package
 -------------------
 
   From your project's target directory you'll able to see the generated jar file.
@@ -98,19 +98,19 @@
 * How to use jar:sign specifying parameters on the command line
 
 -------------------
-  m2 jar:sign -Dkeystore=/path/to/your/keystore -Dstorepass=yourstorepassword -Dalias=youralias
+  mvn jar:sign -Dkeystore=/path/to/your/keystore -Dstorepass=yourstorepassword -Dalias=youralias
 -------------------
 
 * How to use jar:sign-verify specifying parameters on the command line
 
 -------------------
-  m2 jar:sign-verify [-Djarpath=/path/to/your/signedjar] [-Dverbose=true [-Dcheckcerts=true] ]
+  mvn jar:sign-verify [-Djarpath=/path/to/your/signedjar] [-Dverbose=true [-Dcheckcerts=true] ]
 -------------------
 
 * How to disable jar signing
 
 -------------------
-  m2 ... -Dmaven.jar.skip.sign=true
+  mvn ... -Dmaven.jar.skip.sign=true
 -------------------
 
   For full documentation, click {{{index.html}here}}.

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/site/apt/howto.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/site/apt/howto.apt?rev=415074&r1=415073&r2=415074&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/site/apt/howto.apt (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/site/apt/howto.apt Sat Jun 17 15:08:20 2006
@@ -15,7 +15,7 @@
 *Run All Reports
 
  To include all Project Info Reports in your project, you must configure your pom.xml.
- Use "m2 site:site" to generate the configured reports.
+ Use "mvn site:site" to generate the configured reports.
 
 -------------------
 <project>
@@ -37,7 +37,7 @@
 *Run Selective Reports
 
  To run the reports selectively, you can configure it to include only the reports that you prefer.
- Use "m2 site:site" to generate the selected reports.
+ Use "mvn site:site" to generate the selected reports.
 
 -------------------
 
@@ -78,19 +78,19 @@
 |<<Report Name>>                  | <<Command Line>>                             |
 |                                 |                                              |
 *---------------------------------+----------------------------------------------+
-|Dependencies Report              | m2 project-info-reports:dependencies         |
+|Dependencies Report              | mvn project-info-reports:dependencies        |
 *---------------------------------+----------------------------------------------+
-|Mailing Lists                    | m2 project-info-reports:mailing-list         |
+|Mailing Lists                    | mvn project-info-reports:mailing-list        |
 *---------------------------------+----------------------------------------------+
-|Continous Integration            | m2 project-info-reports:cim                  |
+|Continous Integration            | mvn project-info-reports:cim                 |
 *---------------------------------+----------------------------------------------+
-|Source Repository                | m2 project-info-reports:scm                  |
+|Source Repository                | mvn project-info-reports:scm                 |
 *---------------------------------+----------------------------------------------+
-|Issue Tracking                   | m2 project-info-reports:issue-tracking       |
+|Issue Tracking                   | mvn project-info-reports:issue-tracking      |
 *---------------------------------+----------------------------------------------+
-|Project Team                     | m2 project-info-reports:project-team         |
+|Project Team                     | mvn project-info-reports:project-team        |
 *---------------------------------+----------------------------------------------+
-|License                          | m2 project-info-reports:license              |
+|License                          | mvn project-info-reports:license             |
 *---------------------------------+----------------------------------------------+
 
 

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/src/test/java/org/apache/maven/report/projectinfo/AbstractMavenReportTestCase.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/src/test/java/org/apache/maven/report/projectinfo/AbstractMavenReportTestCase.java?rev=415074&r1=415073&r2=415074&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/src/test/java/org/apache/maven/report/projectinfo/AbstractMavenReportTestCase.java (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/src/test/java/org/apache/maven/report/projectinfo/AbstractMavenReportTestCase.java Sat Jun 17 15:08:20 2006
@@ -239,11 +239,11 @@
 
     /**
      * Convenience method to create a m2 command line from a given working directory.
-     * <p>We suppose that the <code>m2</code> executable is present in the command path</p>.
+     * <p>We suppose that the <code>mvn</code> executable is present in the command path</p>.
      *
      * @param workingDir a not null working directory.
      * @param goal       the wanted goal
-     * @return the m2 command line, eg <code>m2 clean:clean site:site</code>
+     * @return the m2 command line, eg <code>mvn clean:clean site:site</code>
      * @throws IllegalArgumentException if the parameter workingDir is empty or doesnt exist.
      */
     private static Commandline createMaven2CommandLine( File workingDir, String goal )

Modified: maven/plugins/trunk/maven-war-plugin/src/site/apt/howto.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/site/apt/howto.apt?rev=415074&r1=415073&r2=415074&view=diff
==============================================================================
--- maven/plugins/trunk/maven-war-plugin/src/site/apt/howto.apt (original)
+++ maven/plugins/trunk/maven-war-plugin/src/site/apt/howto.apt Sat Jun 17 15:08:20 2006
@@ -20,6 +20,6 @@
   web application from the current project, one would type
 
 +--------
-  m2 war:exploded
+  mvn war:exploded
 +---------