blob: 5a69547dff4684305b0d37f63bdc8c315e38e93b [file] [log] [blame]
#!/bin/bash
# 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.
set -ex
IVY_MIRROR_PROP=${IVY_MIRROR_PROP:-http://repo1.maven.org/maven2/}
BUILD_OPTS="-Dversion=${FULL_VERSION} \
-Divy.home=${HOME}/.ivy2 -Drepo.maven.org=$IVY_MIRROR_PROP \
-Divy_install_path=${HOME}/.ant/lib -lib ${HOME}/.ant/lib \
-Dreactor.repo=file://${HOME}/.m2/repository"
# FIXME: this needs to be fixed at the product level
ant $BUILD_OPTS ivy-bootstrap
mkdir -p solr/test-framework/lib
ant $BUILD_OPTS clean
# Build source package
(cd solr ; ant $BUILD_OPTS package-local-src-tgz "$@")
# Build Solr package
(cd solr ; ant $BUILD_OPTS create-package "$@")