File tree 2 files changed +15
-5
lines changed
2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ repositories {
45
45
46
46
47
47
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 "
50
50
51
51
testCompile ' org.spockframework:spock-core:1.1-groovy-2.4'
52
52
testCompile ' org.codehaus.groovy:groovy-all:2.4.13'
Original file line number Diff line number Diff line change @@ -11,16 +11,26 @@ You would use custom scalars when you want to describe more meaningful behavior
11
11
12
12
To use this library put the following into your gradle config
13
13
14
- compile 'com.graphql-java:graphql-java-extended-scalars:1 .0'
14
+ compile 'com.graphql-java:graphql-java-extended-scalars:16.0 .0'
15
15
16
16
or the following into your Maven config
17
17
18
18
<dependency>
19
19
<groupId>com.graphql-java</groupId>
20
20
<artifactId>graphql-java-extended-scalars</artifactId>
21
- <version>1 .0</version>
21
+ <version>16.0 .0</version>
22
22
</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
+
24
34
Then register the scalar with graphql-java
25
35
26
36
RuntimeWiring.newRuntimeWiring().scalar(ExtendedScalars.DateTime)
You can’t perform that action at this time.
0 commit comments