| #!/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 -xe |
| |
| export REVISION=`git rev-parse --short HEAD` |
| export BASE_VERSION=$(cat build.xml | grep 'property name="base.version"' | awk -F "\"" '{print $4}') |
| export VERSION=$BASE_VERSION |
| export ARTIFACT_NAME=cassandra-dtest |
| export REPO_DIR=~/.m2/repository/ |
| |
| ant clean |
| ant dtest-jar |
| |
| # Install the version that will be shaded |
| mvn install:install-file \ |
| -Dfile=./build/dtest-${BASE_VERSION}.jar \ |
| -DgroupId=org.apache.cassandra \ |
| -DartifactId=${ARTIFACT_NAME}-local \ |
| -Dversion=${VERSION}-${REVISION} \ |
| -Dpackaging=jar \ |
| -DgeneratePom=true |
| |
| # Create shaded artifact |
| mvn -f relocate-dependencies-harry.pom versions:set -DnewVersion=${VERSION}-${REVISION} -U |
| mvn -f relocate-dependencies-harry.pom package -DskipTests -nsu -Ddtest-local.version=${VERSION}-${REVISION} -U |
| |
| # Deploy shaded artifact |
| mvn install:install-file \ |
| -Dfile=./target/${ARTIFACT_NAME}-shaded-${VERSION}-${REVISION}.jar \ |
| -DgroupId=org.apache.cassandra \ |
| -DartifactId=${ARTIFACT_NAME}-shaded \ |
| -Dversion=${VERSION}-${REVISION} \ |
| -Dpackaging=jar \ |
| -DgeneratePom=true \ |
| -DlocalRepositoryPath=${REPO_DIR} |