5a2f4ff7e3
If the target symbolic link already existed, an invalid link in target was created to java/target. Fixed by checking if the link exists before creating it Change-Id: I3ebcdcf0de1412838d78a2d2e647e265c41502e8
52 lines
1.1 KiB
Bash
Executable File
52 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# Download maven 3 if the system maven isn't maven 3
|
|
VERSION=`mvn -v | grep "Apache Maven 3"`
|
|
if [ -z "${VERSION}" ]; then
|
|
curl http://archive.apache.org/dist/maven/binaries/apache-maven-3.2.1-bin.tar.gz > apache-maven-3.2.1-bin.tar.gz
|
|
tar -xvzf apache-maven-3.2.1-bin.tar.gz
|
|
MVN=${PWD}/apache-maven-3.2.1/bin/mvn
|
|
else
|
|
MVN=mvn
|
|
fi
|
|
|
|
# Get the expected common version
|
|
COMMON_VERSION=$1
|
|
# Get rid of the version argument
|
|
shift
|
|
|
|
# Get rid of the java property name containing the args
|
|
shift
|
|
|
|
RUN_BUILD=false
|
|
for ARG in $*; do
|
|
if [ "$ARG" = "package" ]; then
|
|
RUN_BUILD=true
|
|
fi
|
|
if [ "$ARG" = "install" ]; then
|
|
RUN_BUILD=true
|
|
fi
|
|
done
|
|
|
|
if [ $RUN_BUILD = "true" ]; then
|
|
( cd common; ./build_common.sh ${MVN} ${COMMON_VERSION} )
|
|
RC=$?
|
|
if [ $RC != 0 ]; then
|
|
exit $RC
|
|
fi
|
|
fi
|
|
|
|
# Invoke the maven 3 on the real pom.xml
|
|
( cd java; ${MVN} -DgitRevision=`git rev-list HEAD --max-count 1 --abbrev=0 --abbrev-commit` $* )
|
|
|
|
RC=$?
|
|
|
|
# Copy the jars where the publisher will find them
|
|
if [ $RUN_BUILD = "true" ]; then
|
|
if [ ! -L target ]; then
|
|
ln -sf java/target target
|
|
fi
|
|
fi
|
|
|
|
rm -fr apache-maven-3.2.1*
|
|
exit $RC
|