Sha256: cf16196e8c37f6e384e018e7679df405fe447ce28f0b95443bac43cdd6b646b3
Contents?: true
Size: 1.53 KB
Versions: 6
Compression:
Stored size: 1.53 KB
Contents
set -e BUNDLE=${BUNDLE-"bundle exec"} MVN=${MVN-"mvn"} if [ 'GNU' != "$(tar --help | grep GNU | head -1 | awk '{print $1}')" ]; then echo 'Unable to release: make sure to use GNU tar' exit 1 fi if $(ruby -e'require "java"'); then # Good echo 'Detected JRuby' else echo 'Unable to release: make sure to use JRuby' exit 1 fi VERSION=`grep -E '<version>([0-9]+\.[0-9]+\.[0-9]+)</version>' pom.xml | sed 's/[\t \n]*<version>\(.*\)<\/version>[\t \n]*/\1/'` if [[ -z "$NO_RELEASE" && "$VERSION" != "$(cat $PWD/VERSION)" ]]; then echo 'Unable to release: make sure the versions in pom.xml and VERSION match' exit 1 fi echo 'Cleaning up' $BUNDLE rake killbill:clean echo 'Building gem' $BUNDLE rake build if [[ -z "$NO_RELEASE" ]]; then echo 'Pushing the gem to Rubygems' $BUNDLE rake release fi echo 'Building artifact' $BUNDLE rake killbill:package ARTIFACT="$PWD/pkg/killbill-payment-test-$VERSION.tar.gz" echo "Pushing $ARTIFACT to Maven Central" if [[ -z "$NO_RELEASE" ]]; then GOAL=gpg:sign-and-deploy-file REPOSITORY_ID=ossrh-releases URL=https://oss.sonatype.org/service/local/staging/deploy/maven2/ else GOAL=deploy:deploy-file REPOSITORY_ID=sonatype-nexus-snapshots URL=https://oss.sonatype.org/content/repositories/snapshots/ VERSION="$VERSION-SNAPSHOT" fi $MVN $GOAL \ -DgroupId=org.kill-bill.billing.plugin.ruby \ -DartifactId=payment-test-plugin \ -Dversion=$VERSION \ -Dpackaging=tar.gz \ -DrepositoryId=$REPOSITORY_ID \ -Durl=$URL \ -Dfile=$ARTIFACT \ -DpomFile=pom.xml
Version data entries
6 entries across 6 versions & 1 rubygems