From 369c7d05cbd19fa7702470887cac7c6b53f0316c Mon Sep 17 00:00:00 2001 From: Andreas Linz Date: Thu, 14 Dec 2017 14:44:27 +0100 Subject: [PATCH] Fix the name of the deployed pom file It must be named continuation-token-.pom and not simply pom.xml. --- prepare-bintray-deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare-bintray-deployment.sh b/prepare-bintray-deployment.sh index e34e47a..de43a44 100755 --- a/prepare-bintray-deployment.sh +++ b/prepare-bintray-deployment.sh @@ -10,7 +10,7 @@ COMMIT_MESSAGE=${TRAVIS_COMMIT_MESSAGE:-"Automated CI release"} export COMMIT_MESSAGE=$(echo $COMMIT_MESSAGE | tr [:space:] \ ) rm -rf deploy && mkdir deploy -cp "${PROJECT_ROOT}/pom.xml" deploy +cp "${PROJECT_ROOT}/pom.xml" deploy/continuation-token-${POM_VERSION}.pom cp "${PROJECT_ROOT}"/target/*.jar deploy for f in $(ls deploy); do md5sum < "deploy/$f" > "deploy/${f}.md5"