Skip to content

Commit 5be0a1c

Browse files
authored
Merge pull request #33 from aoudiamoncef/master
build: upgrade to GraphQL Java 16.1
2 parents bf6e649 + 2cf6cb5 commit 5be0a1c

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ repositories {
4545

4646

4747
dependencies {
48-
compile "com.graphql-java:graphql-java:15.0"
49-
compile "com.squareup.okhttp3:okhttp:3.2.0"
48+
compile "com.graphql-java:graphql-java:16.1"
49+
compile "com.squareup.okhttp3:okhttp:3.14.9"
5050

5151
testCompile 'org.spockframework:spock-core:1.1-groovy-2.4'
5252
testCompile 'org.codehaus.groovy:groovy-all:2.4.13'

readme.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,26 @@ You would use custom scalars when you want to describe more meaningful behavior
1111

1212
To use this library put the following into your gradle config
1313

14-
compile 'com.graphql-java:graphql-java-extended-scalars:1.0'
14+
compile 'com.graphql-java:graphql-java-extended-scalars:16.0.0'
1515

1616
or the following into your Maven config
1717

1818
<dependency>
1919
<groupId>com.graphql-java</groupId>
2020
<artifactId>graphql-java-extended-scalars</artifactId>
21-
<version>1.0</version>
21+
<version>16.0.0</version>
2222
</dependency>
23-
23+
24+
> Note:
25+
>
26+
> use 1.0.1 or above for graphql-java 14.x and above
27+
>
28+
> use 15.0.0 or above for graphql-java 15.x and above
29+
>
30+
> use 16.0.0 or above for graphql-java 16.x and above
31+
32+
Its currently available from JCenter repo and Maven central.
33+
2434
Then register the scalar with graphql-java
2535

2636
RuntimeWiring.newRuntimeWiring().scalar(ExtendedScalars.DateTime)

0 commit comments

Comments
 (0)