680881b48d
- Install maven metadata so they are not downloaded when mvn is run (667625) repo-metadata.tar.xz will have to be updated as additional plugins need new metadata - Make sure JavadirWorkspaceReader is used when building model (patch update) Needed because WorkspaceReader is not used early when building mvn project and this causes problems - JavadirWorkspaceReader doesn't pretend to resolve non-existent artifacts anymore Instead it returns null (artifact not found) so that reactor/local resolver can work as expected
44 lines
932 B
Bash
44 lines
932 B
Bash
#!/bin/sh
|
|
if [ -f /usr/share/java-utils/java-functions ] ; then
|
|
. /usr/share/java-utils/java-functions
|
|
set_jvm
|
|
set_javacmd
|
|
fi
|
|
|
|
function install_metadata()
|
|
{
|
|
mkdir -p "$1"
|
|
tar xf /usr/share/maven/repo-metadata.tar.xz -C "$1"
|
|
}
|
|
|
|
|
|
# add maven.repo.local if it's not defined already
|
|
local_add="-Dmaven.repo.local=$(pwd)/.m2/"
|
|
|
|
function process_args()
|
|
{
|
|
while [ $# != 0 ]; do
|
|
flag="$1"
|
|
case "$flag" in
|
|
*) ind=`expr match "$flag" -Dmaven.repo.local=`
|
|
if [[ $ind != 0 ]];then
|
|
install_metadata "${flag/-Dmaven.repo.local=/}/"
|
|
local_add=""
|
|
fi
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
}
|
|
|
|
process_args "$@"
|
|
|
|
if [ -n "$local_add" ];then
|
|
install_metadata "${local_add/-Dmaven.repo.local=/}/"
|
|
fi
|
|
|
|
export M2_HOME=/usr/share/maven
|
|
echo $JAVA_HOME
|
|
export JAVA_HOME
|
|
$M2_HOME/bin/mvn -o -Dmaven.jpp.mode ${local_add} "$@"
|