Updated Branches: refs/heads/master 7683712d3 -> d266733f0
[MNG-5574] Write error/warning messages from mvn shell and batch scripts to stderr - Only errors go to stderr, warnings don't stop Maven from working Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/d266733f Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/d266733f Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/d266733f Branch: refs/heads/master Commit: d266733f048178d5d252360924aaaf5577a04933 Parents: 7683712 Author: Michael Osipov <[email protected]> Authored: Sun Feb 9 12:07:44 2014 +0100 Committer: Michael Osipov <[email protected]> Committed: Sun Feb 9 12:07:44 2014 +0100 ---------------------------------------------------------------------- apache-maven/src/bin/mvn | 2 +- apache-maven/src/bin/mvnDebug | 2 +- apache-maven/src/bin/mvnyjp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/d266733f/apache-maven/src/bin/mvn ---------------------------------------------------------------------- diff --git a/apache-maven/src/bin/mvn b/apache-maven/src/bin/mvn index f790bc5..59efef3 100755 --- a/apache-maven/src/bin/mvn +++ b/apache-maven/src/bin/mvn @@ -167,7 +167,7 @@ if [ ! -x "$JAVACMD" ] ; then fi if [ -z "$JAVA_HOME" ] ; then - echo "Warning: JAVA_HOME environment variable is not set." >&2 + echo "Warning: JAVA_HOME environment variable is not set." fi CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher http://git-wip-us.apache.org/repos/asf/maven/blob/d266733f/apache-maven/src/bin/mvnDebug ---------------------------------------------------------------------- diff --git a/apache-maven/src/bin/mvnDebug b/apache-maven/src/bin/mvnDebug index 2c1853c..4c0beda 100755 --- a/apache-maven/src/bin/mvnDebug +++ b/apache-maven/src/bin/mvnDebug @@ -171,7 +171,7 @@ if [ ! -x "$JAVACMD" ] ; then fi if [ -z "$JAVA_HOME" ] ; then - echo "Warning: JAVA_HOME environment variable is not set." >&2 + echo "Warning: JAVA_HOME environment variable is not set." fi CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher http://git-wip-us.apache.org/repos/asf/maven/blob/d266733f/apache-maven/src/bin/mvnyjp ---------------------------------------------------------------------- diff --git a/apache-maven/src/bin/mvnyjp b/apache-maven/src/bin/mvnyjp index f4d1154..5729942 100755 --- a/apache-maven/src/bin/mvnyjp +++ b/apache-maven/src/bin/mvnyjp @@ -175,7 +175,7 @@ if [ ! -x "$JAVACMD" ] ; then fi if [ -z "$JAVA_HOME" ] ; then - echo "Warning: JAVA_HOME environment variable is not set." >&2 + echo "Warning: JAVA_HOME environment variable is not set." fi CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
