Skip to content

Commit

Permalink
Fix release plugin configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
oliemansm committed Nov 28, 2019
1 parent 68c35c0 commit 552c19e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 9.0.0-SNAPSHOT
version = 9.0.0
group = com.graphql-java-kickstart

PROJECT_NAME = graphql-java-kickstart-servlet
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = 'graphql-java-servlet'
rootProject.name = 'graphql-java-kickstart-servlet'

include ':graphql-java-kickstart'
include ':graphql-java-servlet'
3 changes: 2 additions & 1 deletion travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ];
git checkout -f ${TRAVIS_BRANCH}
if [ "${RELEASE}" = "true" ]; then
echo "Deploying release to Bintray"
./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
# ./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
./gradlew clean assemble && ./gradlew check --info && ./gradlew bintrayUpload -x check --info
else
echo "Deploying snapshot to Bintray"
./gradlew artifactoryPublish && ./gradlew check --info
Expand Down

0 comments on commit 552c19e

Please sign in to comment.