Skip to content

Commit

Permalink
Upgrade graphql java to 19.5
Browse files Browse the repository at this point in the history
gradle upgrade to 8.0.2
  • Loading branch information
EugenMayer authored and tom-mayer committed Jun 13, 2023
1 parent dff22dd commit 392600b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ gradle.projectsEvaluated {

dependencies {
implementation 'javax.validation:validation-api:2.0.1.Final'
implementation 'com.graphql-java:graphql-java:19.3'
implementation 'com.graphql-java:graphql-java:19.5'
implementation 'com.graphql-java:graphql-java-extended-scalars:19.1'
implementation 'javax.xml.bind:jaxb-api:2.3.1'

Expand All @@ -53,6 +53,7 @@ dependencies {

testImplementation 'org.testng:testng:7.7.1'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
// FIXME: do not upgrade to 5.x yet, bytebuddy issues
testImplementation 'org.mockito:mockito-core:4.11.0'
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down

0 comments on commit 392600b

Please sign in to comment.