-
Notifications
You must be signed in to change notification settings - Fork 6
/
README.txt
30 lines (24 loc) · 1.06 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Usage:
1. Copy maven-trap-0.5.jar file to M2_HOME/boot
2. Edit the M2_HOME/bin/mvn script and change the last line from:
exec "$JAVACMD" \
$MAVEN_OPTS \
-cp "${M2_HOME}"/boot/classworlds-*.jar \
"-Dclassworlds.conf=${M2_HOME}/bin/m2.conf" \
"-Dmaven.home=${M2_HOME}" \
${CLASSWORLDS_LAUNCHER} $QUOTED_ARGS
to:
exec "$JAVACMD" \
$MAVEN_OPTS \
-cp "${M2_HOME}"/boot/classworlds-1.1.jar:"${M2_HOME}"/boot/maven-trap-0.5.jar \
"-Dclassworlds.conf=${M2_HOME}/bin/m2.conf" \
"-Dmaven.home=${M2_HOME}" \
org.twdata.maven.trap.Dispatcher $QUOTED_ARGS
3. Switch on whatever features you'd like by setting environment variables
(unsetting to disable):
- MAVEN_COLOR : Output colorization
- MAVEN_ALWAYS_OFFLINE : Changes default to be offline, -o to go online
- MAVEN_YAMLPOM : Automatic creating and syncing of YAML version of the POM
Now, you can use 'mvn' like normal. Alternatively, you can make the
changes to a cloned 'mvn2' script to avoid modifying any original files. Also,
you may want to change 'mvnDebug' as well if you use that frequently.