From 8ce22a006c4c97e5d12269f9f47d8ec76248f990 Mon Sep 17 00:00:00 2001 From: Steven Jardine Date: Wed, 24 Feb 2016 16:16:23 -0700 Subject: [PATCH] Use the deploy profile for snapshot auto deploy. --- .utility/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.utility/deploy.sh b/.utility/deploy.sh index 6551358e..20d0bde5 100755 --- a/.utility/deploy.sh +++ b/.utility/deploy.sh @@ -2,5 +2,5 @@ set -ev if [ "$TRAVIS_JDK_VERSION" == "oraclejdk7" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then echo "ossrh\${env.OSSRH_USER}\${env.OSSRH_PASS}" > ~/settings.xml -mvn deploy -Prelease --settings ~/settings.xml +mvn deploy -Pdeploy --settings ~/settings.xml fi