2013-07-28 16:48:37 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-06-20 07:55:50 -04:00
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
|
2013-07-28 16:48:37 -04:00
|
|
|
# How I run the ITs from a clean slate. Though I do this with a primed Nexus instance. JvZ.
|
2020-05-31 22:19:44 -04:00
|
|
|
# build maven core using -PversionlessMavenDist
|
2013-07-28 16:48:37 -04:00
|
|
|
|
2020-05-26 14:14:01 -04:00
|
|
|
if [ -z "$MAVENCODEBASE" ] ; then
|
|
|
|
echo Please export MAVENCODEBASE
|
|
|
|
else
|
2020-06-10 14:08:00 -04:00
|
|
|
case "$MAVENCODEBASE" in
|
|
|
|
/*) ;;
|
|
|
|
*) MAVENCODEBASE="$PWD/$MAVENCODEBASE" ;;
|
|
|
|
esac
|
2021-01-23 15:44:53 -05:00
|
|
|
mvn clean verify -P versionlessMavenDist -f "$MAVENCODEBASE" || exit $?
|
2021-01-16 08:41:17 -05:00
|
|
|
if [ -f "$MAVENCODEBASE/maven-wrapper/target/maven-wrapper.jar" ] ; then
|
2021-07-20 16:31:45 -04:00
|
|
|
mvn clean install -Prun-its,embedded -Dmaven.repo.local="`pwd`/repo" -DmavenDistro="$MAVENCODEBASE/apache-maven/target/apache-maven-bin.zip" -DwrapperDistroDir="$MAVENCODEBASE/apache-maven/target" -DmavenWrapper="$MAVENCODEBASE/maven-wrapper/target/maven-wrapper.jar" || exit $?
|
2021-01-16 08:41:17 -05:00
|
|
|
else
|
2021-07-20 16:31:45 -04:00
|
|
|
mvn clean install -Prun-its,embedded,!maven-wrapper -Dmaven.repo.local="`pwd`/repo" -DmavenDistro="$MAVENCODEBASE/apache-maven/target/apache-maven-bin.zip" || exit $?
|
2021-01-16 08:41:17 -05:00
|
|
|
fi
|
2020-05-26 14:14:01 -04:00
|
|
|
fi
|
|
|
|
|
2014-05-28 12:36:31 -04:00
|
|
|
|
|
|
|
# If behind a proxy try this
|
|
|
|
|
2017-04-01 16:10:35 -04:00
|
|
|
# mvn clean install -Prun-its,embedded -Dmaven.repo.local=`pwd`/repo -Dproxy.host=<host> -Dproxy.port=<port> -Dproxy.user= -Dproxy.pass= -Dproxy.nonProxyHosts=<hosts>
|