Skip to content

Commit 552c19e

Browse files
committed
Fix release plugin configuration
1 parent 68c35c0 commit 552c19e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 9.0.0-SNAPSHOT
1+
version = 9.0.0
22
group = com.graphql-java-kickstart
33

44
PROJECT_NAME = graphql-java-kickstart-servlet

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rootProject.name = 'graphql-java-servlet'
1+
rootProject.name = 'graphql-java-kickstart-servlet'
22

33
include ':graphql-java-kickstart'
44
include ':graphql-java-servlet'

travis-build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ];
1919
git checkout -f ${TRAVIS_BRANCH}
2020
if [ "${RELEASE}" = "true" ]; then
2121
echo "Deploying release to Bintray"
22-
./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
22+
# ./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
23+
./gradlew clean assemble && ./gradlew check --info && ./gradlew bintrayUpload -x check --info
2324
else
2425
echo "Deploying snapshot to Bintray"
2526
./gradlew artifactoryPublish && ./gradlew check --info

0 commit comments

Comments
 (0)