mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 11:59:15 -04:00
18 lines
413 B
Bash
18 lines
413 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
if [ -f /etc/mavenrc ] ; then
|
|
. /etc/mavenrc
|
|
fi
|
|
|
|
if [ -f "${HOME}/.mavenrc" ] ; then
|
|
. "${HOME}/.mavenrc"
|
|
fi
|
|
|
|
M2_HOME=${M2_HOME:-"%%DATADIR%%"}
|
|
|
|
JAVA_VERSION="%%JAVA_VERSION%%" exec "%%LOCALBASE%%/bin/java" $MAVEN_OPTS \
|
|
-classpath "${M2_HOME}/boot/%%CLASSWORLDS_JAR%%" \
|
|
"-Dclassworlds.conf=${M2_HOME}/bin/m2.conf" \
|
|
"-Dmaven.home=${M2_HOME}" org.codehaus.classworlds.Launcher "$@"
|