File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ repositories {
4545
4646
4747dependencies {
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'
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
1111
1212To 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
1616or 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+
2434Then register the scalar with graphql-java
2535
2636 RuntimeWiring.newRuntimeWiring().scalar(ExtendedScalars.DateTime)
You can’t perform that action at this time.
0 commit comments