mirror of https://github.com/apache/maven.git
still allow debugging the verifier, and don't discard all MAVEN_OPTS (I need it to have my home directory set correctly!)
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@226460 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dad9ebc577
commit
a7b156acc3
|
@ -23,6 +23,15 @@ if [ ! -z "$M2_HOME" ]; then
|
|||
jvm_m2_home="-Dmaven.home=$M2_HOME"
|
||||
fi
|
||||
|
||||
#java "$jvm_m2_home" $MAVEN_OPTS -cp "$cp" $verifier $@
|
||||
java "$jvm_m2_home" -cp "$cp" $verifier $@
|
||||
# Don't debug the verifier, debug m2
|
||||
opts=`echo $MAVEN_OPTS | sed 's/-Xdebug//' | sed 's/-Djava.compiler=NONE//' | sed 's/-Xnoagent//' | sed 's/-Xrunjdwp[^ ]*//'`
|
||||
|
||||
# If you want to debug the verifier, make --debug the first argument
|
||||
if [ "$1" = "--debug" ]; then
|
||||
shift
|
||||
opts="$opts -Xdebug -Djava.compiler=NONE -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"
|
||||
echo Debugging verifier on port 5005
|
||||
fi
|
||||
|
||||
java "$jvm_m2_home" $opts -cp "$cp" $verifier $@
|
||||
|
||||
|
|
Loading…
Reference in New Issue