File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
src/main/java/graphql/servlet Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1+ package graphql .servlet ;
2+
3+ public abstract class SimpleAbstractGraphQLServlet extends AbstractGraphQLHttpServlet {
4+
5+ @ Override
6+ protected GraphQLQueryInvoker getQueryInvoker () {
7+ return null ;
8+ }
9+
10+ @ Override
11+ protected GraphQLInvocationInputFactory getInvocationInputFactory () {
12+ return null ;
13+ }
14+
15+ @ Override
16+ protected GraphQLObjectMapper getGraphQLObjectMapper () {
17+ return null ;
18+ }
19+
20+ }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ];
2020 if [ " ${RELEASE} " = " true" ]; then
2121 echo " Deploying release to Bintray"
2222 ./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
23- elif
23+ else
2424 echo " Deploying snapshot to Bintray"
2525 ./gradlew clean assemble bintrayPublish && ./gradlew check --info
2626 fi
You can’t perform that action at this time.
0 commit comments