You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2014/02/08 16:57:26 UTC

[1/2] git commit: [MNG-5574] Write error/warning messages from mvn shell and batch scripts to stderr

Updated Branches:
  refs/heads/master 81619e6f1 -> b4a778035


[MNG-5574] Write error/warning messages from mvn shell and batch scripts
to stderr


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/088193ca
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/088193ca
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/088193ca

Branch: refs/heads/master
Commit: 088193ca4cc1a7a1e4838c424a0f2120300479fa
Parents: 8e2247d
Author: Michael Osipov <mi...@apache.org>
Authored: Sat Feb 8 16:53:52 2014 +0100
Committer: Michael Osipov <mi...@apache.org>
Committed: Sat Feb 8 16:53:52 2014 +0100

----------------------------------------------------------------------
 apache-maven/src/bin/mvn          |  6 +++---
 apache-maven/src/bin/mvn.bat      | 28 ++++++++++++++--------------
 apache-maven/src/bin/mvnDebug     |  6 +++---
 apache-maven/src/bin/mvnDebug.bat | 28 ++++++++++++++--------------
 apache-maven/src/bin/mvnyjp       |  8 ++++----
 5 files changed, 38 insertions(+), 38 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/088193ca/apache-maven/src/bin/mvn
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvn b/apache-maven/src/bin/mvn
index 5479fb5..f790bc5 100755
--- a/apache-maven/src/bin/mvn
+++ b/apache-maven/src/bin/mvn
@@ -161,13 +161,13 @@ if [ -z "$JAVACMD" ] ; then
 fi
 
 if [ ! -x "$JAVACMD" ] ; then
-  echo "Error: JAVA_HOME is not defined correctly."
-  echo "  We cannot execute $JAVACMD"
+  echo "Error: JAVA_HOME is not defined correctly." >&2
+  echo "  We cannot execute $JAVACMD" >&2
   exit 1
 fi
 
 if [ -z "$JAVA_HOME" ] ; then
-  echo "Warning: JAVA_HOME environment variable is not set."
+  echo "Warning: JAVA_HOME environment variable is not set." >&2
 fi
 
 CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher

http://git-wip-us.apache.org/repos/asf/maven/blob/088193ca/apache-maven/src/bin/mvn.bat
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvn.bat b/apache-maven/src/bin/mvn.bat
index 42bd570..9540492 100644
--- a/apache-maven/src/bin/mvn.bat
+++ b/apache-maven/src/bin/mvn.bat
@@ -56,9 +56,9 @@ if "%OS%"=="WINNT" @setlocal
 if not "%JAVA_HOME%" == "" goto OkJHome
 
 echo.
-echo ERROR: JAVA_HOME not found in your environment.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
 echo.
 goto error
 
@@ -66,10 +66,10 @@ goto error
 if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
 
 echo.
-echo ERROR: JAVA_HOME is set to an invalid directory.
-echo JAVA_HOME = "%JAVA_HOME%"
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
 echo.
 goto error
 
@@ -81,9 +81,9 @@ if "%OS%"=="WINNT" SET "M2_HOME=%~dp0.."
 if not "%M2_HOME%"=="" goto valMHome
 
 echo.
-echo ERROR: M2_HOME not found in your environment.
-echo Please set the M2_HOME variable in your environment to match the
-echo location of the Maven installation
+echo Error: M2_HOME not found in your environment. >&2
+echo Please set the M2_HOME variable in your environment to match the >&2
+echo location of the Maven installation. >&2
 echo.
 goto error
 
@@ -98,10 +98,10 @@ goto stripMHome
 if exist "%M2_HOME%\bin\mvn.bat" goto init
 
 echo.
-echo ERROR: M2_HOME is set to an invalid directory.
-echo M2_HOME = "%M2_HOME%"
-echo Please set the M2_HOME variable in your environment to match the
-echo location of the Maven installation
+echo Error: M2_HOME is set to an invalid directory. >&2
+echo M2_HOME = "%M2_HOME%" >&2
+echo Please set the M2_HOME variable in your environment to match the >&2
+echo location of the Maven installation >&2
 echo.
 goto error
 @REM ==== END VALIDATION ====

http://git-wip-us.apache.org/repos/asf/maven/blob/088193ca/apache-maven/src/bin/mvnDebug
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvnDebug b/apache-maven/src/bin/mvnDebug
index a64929f..2c1853c 100755
--- a/apache-maven/src/bin/mvnDebug
+++ b/apache-maven/src/bin/mvnDebug
@@ -165,13 +165,13 @@ if [ -z "$JAVACMD" ] ; then
 fi
 
 if [ ! -x "$JAVACMD" ] ; then
-  echo "Error: JAVA_HOME is not defined correctly."
-  echo "  We cannot execute $JAVACMD"
+  echo "Error: JAVA_HOME is not defined correctly." >&2
+  echo "  We cannot execute $JAVACMD" >&2
   exit 1
 fi
 
 if [ -z "$JAVA_HOME" ] ; then
-  echo "Warning: JAVA_HOME environment variable is not set."
+  echo "Warning: JAVA_HOME environment variable is not set." >&2
 fi
 
 CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher

http://git-wip-us.apache.org/repos/asf/maven/blob/088193ca/apache-maven/src/bin/mvnDebug.bat
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvnDebug.bat b/apache-maven/src/bin/mvnDebug.bat
index 446afb2..b7b42b9 100644
--- a/apache-maven/src/bin/mvnDebug.bat
+++ b/apache-maven/src/bin/mvnDebug.bat
@@ -60,9 +60,9 @@ set MAVEN_DEBUG_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,ad
 if not "%JAVA_HOME%" == "" goto OkJHome
 
 echo.
-echo ERROR: JAVA_HOME not found in your environment.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation >&2
 echo.
 goto error
 
@@ -70,10 +70,10 @@ goto error
 if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
 
 echo.
-echo ERROR: JAVA_HOME is set to an invalid directory.
-echo JAVA_HOME = "%JAVA_HOME%"
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation >&2
 echo.
 goto error
 
@@ -85,9 +85,9 @@ if "%OS%"=="WINNT" SET "M2_HOME=%~dp0.."
 if not "%M2_HOME%"=="" goto valMHome
 
 echo.
-echo ERROR: M2_HOME not found in your environment.
-echo Please set the M2_HOME variable in your environment to match the
-echo location of the Maven installation
+echo Error: M2_HOME not found in your environment. >&2
+echo Please set the M2_HOME variable in your environment to match the >&2
+echo location of the Maven installation >&2
 echo.
 goto error
 
@@ -102,10 +102,10 @@ goto stripMHome
 if exist "%M2_HOME%\bin\mvn.bat" goto init
 
 echo.
-echo ERROR: M2_HOME is set to an invalid directory.
-echo M2_HOME = "%M2_HOME%"
-echo Please set the M2_HOME variable in your environment to match the
-echo location of the Maven installation
+echo Error: M2_HOME is set to an invalid directory. >&2
+echo M2_HOME = "%M2_HOME%" >&2
+echo Please set the M2_HOME variable in your environment to match the >&2
+echo location of the Maven installation >&2
 echo.
 goto error
 @REM ==== END VALIDATION ====

http://git-wip-us.apache.org/repos/asf/maven/blob/088193ca/apache-maven/src/bin/mvnyjp
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvnyjp b/apache-maven/src/bin/mvnyjp
index d80329a..f4d1154 100755
--- a/apache-maven/src/bin/mvnyjp
+++ b/apache-maven/src/bin/mvnyjp
@@ -169,13 +169,13 @@ if [ -z "$JAVACMD" ] ; then
 fi
 
 if [ ! -x "$JAVACMD" ] ; then
-  echo "Error: JAVA_HOME is not defined correctly."
-  echo "  We cannot execute $JAVACMD"
+  echo "Error: JAVA_HOME is not defined correctly." >&2
+  echo "  We cannot execute $JAVACMD" >&2
   exit 1
 fi
 
 if [ -z "$JAVA_HOME" ] ; then
-  echo "Warning: JAVA_HOME environment variable is not set."
+  echo "Warning: JAVA_HOME environment variable is not set." >&2
 fi
 
 CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
@@ -191,7 +191,7 @@ if $cygwin; then
 fi
 
 if [ ! -f "$YJPLIB" ]; then
-  echo "Error: Unable to autodetect the YJP library location. Please set YJPLIB variable"
+  echo "Error: Unable to autodetect the YJP library location. Please set YJPLIB variable" >&2
   exit 1
 fi
 


[2/2] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/maven

Posted by mi...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/maven


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/b4a77803
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/b4a77803
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/b4a77803

Branch: refs/heads/master
Commit: b4a77803502321e19f227110d52e42bab7ccf5d6
Parents: 088193c 81619e6
Author: Michael Osipov <mi...@apache.org>
Authored: Sat Feb 8 16:56:43 2014 +0100
Committer: Michael Osipov <mi...@apache.org>
Committed: Sat Feb 8 16:56:43 2014 +0100

----------------------------------------------------------------------
 .../versioning/DefaultArtifactVersion.java      |   2 +-
 .../maven/artifact/ArtifactScopeEnum.java       |   4 +-
 .../java/org/apache/maven/DefaultMaven.java     |   4 +-
 .../maven/execution/MojoExecutionListener.java  |   6 +-
 .../execution/ProjectExecutionListener.java     |   8 +-
 .../apache/maven/execution/ReactorManager.java  |  20 ++--
 .../scope/WeakMojoExecutionListener.java        |   6 +-
 .../lifecycle/internal/BuildThreadFactory.java  |  21 +++-
 .../lifecycle/internal/ProjectBuildList.java    |  18 +--
 .../lifecycle/internal/builder/Builder.java     |  23 +++-
 .../builder/BuilderNotFoundException.java       |  28 ++++-
 .../multithreaded/MultiThreadedBuilder.java     |  14 ++-
 .../singlethreaded/SingleThreadedBuilder.java   |  19 +++
 .../java/org/apache/maven/cli/MavenCli.java     |   2 +-
 .../model/validation/DefaultModelValidator.java | 117 ++++++++++---------
 15 files changed, 189 insertions(+), 103 deletions(-)
----------------------------------------------------------------------