mirror of https://github.com/apache/maven.git
14 lines
642 B
Plaintext
Executable File
14 lines
642 B
Plaintext
Executable File
#
|
|
# 1009-02-18 Oleg:
|
|
# this is a temporary script to simplify debugging of mercury-based bootstrap (bs) build
|
|
# it addresses the issue of random XMLInputStreamFactory class that varies across installations
|
|
# and maven-3 requires a specific default implementation
|
|
#
|
|
export CLASSPATH=./mercury-ant-tasks-1.0-alpha-6-SNAPSHOT.jar
|
|
export ANT_OPTS='-Dmercury.log.level=info -Djavax.xml.stream.XMLInputFactory=com.ctc.wstx.stax.WstxInputFactory '
|
|
#export ANT_OPTS=$ANT_OPTS' -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000'
|
|
|
|
echo ANT_OPTS=$ANT_OPTS
|
|
|
|
ant -f build-mercury.xml $*
|