blob: 1941d7d3593c5723765a1c4cc3ea29caf56e90f5 [file] [log] [blame]
#!/bin/sh
# 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.
# Bourne shell syntax, this should hopefully run on pretty much anything.
usage() {
echo "Usage: extractAndBuild.sh <level> [-notest] [-deploy]"
echo " (-notest and -deploy cannot be used together)"
}
vmargs=""
mvnCommand=install
# Check arguments
if [ $# = 0 ]
then
usage
exit 1
fi
if [ "$1" = "trunk" ]
then
level=trunk
leveldir=trunk
else
level=tags/$1
leveldir=$1
fi
if [ $# -gt "2" ]
then
usage
exit 1
fi
if [ -n "$2" ]
then
# Check for -notest switch. If present, add the no-test define to the mvn command line.
if [ "$2" = "-notest" ]
then
vmargs="-Dmaven.test.skip=true"
# Check for -deploy switch. If present, change maven command to deploy artifacts to remote Maven repo
elif [ "$2" = "-deploy" ]
then
vmargs="-DsignArtifacts=true"
mvnCommand="source:jar deploy"
else
usage
exit 1
fi
fi
svn checkout http://svn.apache.org/repos/asf/incubator/uima/uimaj/$level
cd $leveldir/uimaj
mvn ${vmargs} -Duima.build.date="`date`" $mvnCommand
cd ..
cd uimaj-distr
mvn assembly:assembly