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" ];
20
20
if [ " ${RELEASE} " = " true" ]; then
21
21
echo " Deploying release to Bintray"
22
22
./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
23
- elif
23
+ else
24
24
echo " Deploying snapshot to Bintray"
25
25
./gradlew clean assemble bintrayPublish && ./gradlew check --info
26
26
fi
You can’t perform that action at this time.
0 commit comments