blob: 480ac54ba19f4784c366bad5c7ab0a5c9a35af59 [file] [log] [blame]
#!/usr/bin/env 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.
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
LIB_DIR=${SCRIPT_DIR}/../lib
if [[ -d "$LIB_DIR" ]]; then
#release directory layout
LIB_DIR=`cd ${LIB_DIR} > /dev/null; pwd`
ARTIFACT=`ls -1 ${LIB_DIR}/*.jar`
else
#development directory layout
EXAMPLES_DIR=${SCRIPT_DIR}/../../../
if [[ -d "$EXAMPLES_DIR" ]]; then
EXAMPLES_DIR=`cd ${EXAMPLES_DIR} > /dev/null; pwd`
fi
JAR_PREFIX=`basename ${EXAMPLES_DIR}`
ARTIFACT=`ls -1 ${EXAMPLES_DIR}/target/${JAR_PREFIX}-*.jar | grep -v test | grep -v javadoc | grep -v sources | grep -v shaded`
if [[ ! -f "$ARTIFACT" ]]; then
echo "Jar file is missing. Please do a full build (mvn clean package -DskipTests) first."
exit -1
fi
fi
echo ${ARTIFACT}