File tree Expand file tree Collapse file tree 6 files changed +6
-9
lines changed
graphql-java-kickstart/src/main/java/graphql/kickstart/execution/error Expand file tree Collapse file tree 6 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ if [ "${FLAVOUR}" == 'javax' ]; then
14
14
.github/add-javax-suffix.sh
15
15
fi
16
16
17
- ./gradlew clean build publishToSonatype closeAndReleaseSonatypeStagingRepository
17
+ ./gradlew clean build publishToSonatype closeAndReleaseSonatypeStagingRepositories
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v4
12
- - uses : gradle/wrapper-validation-action@v2
12
+ - uses : gradle/wrapper-validation-action@v3
13
13
14
14
test :
15
15
name : Test run
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- uses : actions/checkout@v4
10
- - uses : gradle/wrapper-validation-action@v2
10
+ - uses : gradle/wrapper-validation-action@v3
11
11
12
12
test-jakarta :
13
13
name : Test run jakarta
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
13
- - uses : gradle/wrapper-validation-action@v2
13
+ - uses : gradle/wrapper-validation-action@v3
14
14
15
15
test-jakarta :
16
16
name : Test run jakarta
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ buildscript {
28
28
29
29
plugins {
30
30
id " biz.aQute.bnd.builder" version " 6.4.0" apply false
31
- id " org.sonarqube" version " 4.4.1.3373 "
31
+ id " org.sonarqube" version " 5.1.0.4882 "
32
32
id " jacoco"
33
- id " io.github.gradle-nexus.publish-plugin" version ' 1.3 .0'
33
+ id " io.github.gradle-nexus.publish-plugin" version ' 2.0 .0'
34
34
}
35
35
36
36
sonarqube {
Original file line number Diff line number Diff line change 3
3
import com .fasterxml .jackson .annotation .JsonInclude ;
4
4
import com .fasterxml .jackson .databind .ObjectMapper ;
5
5
import com .fasterxml .jackson .databind .SerializationFeature ;
6
- import com .fasterxml .jackson .datatype .jdk8 .Jdk8Module ;
7
6
import graphql .kickstart .execution .config .GraphQLServletObjectMapperConfigurer ;
8
7
9
8
/** @author Andrew Potter */
@@ -12,9 +11,7 @@ public class DefaultGraphQLServletObjectMapperConfigurer
12
11
13
12
@ Override
14
13
public void configure (ObjectMapper mapper ) {
15
- // default configuration for GraphQL Java Servlet
16
14
mapper .disable (SerializationFeature .FAIL_ON_EMPTY_BEANS );
17
- mapper .registerModule (new Jdk8Module ());
18
15
mapper .setDefaultPropertyInclusion (JsonInclude .Include .ALWAYS );
19
16
}
20
17
}
You can’t perform that action at this time.
0 commit comments