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 2016/11/13 20:26:23 UTC

maven git commit: [MNG-6115] Add Jansi native library search path to our start scripts

Repository: maven
Updated Branches:
  refs/heads/master a6f8bd171 -> 3d4cd9445


[MNG-6115] Add Jansi native library search path to our start scripts


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

Branch: refs/heads/master
Commit: 3d4cd94450e167953c40028eaf1c71ce7a7cafc7
Parents: a6f8bd1
Author: Michael Osipov <mi...@apache.org>
Authored: Sun Nov 13 21:25:03 2016 +0100
Committer: Michael Osipov <mi...@apache.org>
Committed: Sun Nov 13 21:25:03 2016 +0100

----------------------------------------------------------------------
 apache-maven/src/bin/mvn     | 1 +
 apache-maven/src/bin/mvn.cmd | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/3d4cd944/apache-maven/src/bin/mvn
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvn b/apache-maven/src/bin/mvn
index 2a88df2..ff6f250 100755
--- a/apache-maven/src/bin/mvn
+++ b/apache-maven/src/bin/mvn
@@ -164,4 +164,5 @@ exec "$JAVACMD" \
   -classpath "${CLASSWORLDS_JAR}" \
   "-Dclassworlds.conf=${MAVEN_HOME}/bin/m2.conf" \
   "-Dmaven.home=${MAVEN_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+  "-Dlibrary.jansi.path=${MAVEN_HOME}/lib" \
   ${CLASSWORLDS_LAUNCHER} "$@"

http://git-wip-us.apache.org/repos/asf/maven/blob/3d4cd944/apache-maven/src/bin/mvn.cmd
----------------------------------------------------------------------
diff --git a/apache-maven/src/bin/mvn.cmd b/apache-maven/src/bin/mvn.cmd
index c8ad237..cd81e42 100644
--- a/apache-maven/src/bin/mvn.cmd
+++ b/apache-maven/src/bin/mvn.cmd
@@ -128,6 +128,7 @@ for %%i in ("%MAVEN_HOME%"\boot\plexus-classworlds-*) do set CLASSWORLDS_JAR="%%
   "-Dclassworlds.conf=%MAVEN_HOME%\bin\m2.conf" ^
   "-Dmaven.home=%MAVEN_HOME%" ^
   "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
+  "-Dlibrary.jansi.path=%MAVEN_HOME%\lib" ^
   %CLASSWORLDS_LAUNCHER% %MAVEN_CMD_LINE_ARGS%
 if ERRORLEVEL 1 goto error
 goto end