File tree 2 files changed +12
-3
lines changed 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ You would use custom scalars when you want to describe more meaningful behavior
17
17
18
18
To use this library put the following into your gradle config
19
19
20
- compile 'com.graphql-java:graphql-java-extended-scalars:18.1 '
20
+ compile 'com.graphql-java:graphql-java-extended-scalars:19.0 '
21
21
22
22
or the following into your Maven config
23
23
24
24
<dependency>
25
25
<groupId>com.graphql-java</groupId>
26
26
<artifactId>graphql-java-extended-scalars</artifactId>
27
- <version>18.1 </version>
27
+ <version>19.0 </version>
28
28
</dependency>
29
29
30
30
> Note:
@@ -38,6 +38,9 @@ or the following into your Maven config
38
38
> use 17.0 or above for graphql-java 17.x and above
39
39
>
40
40
> use 18.0 or above for graphql-java 18.x and above
41
+ >
42
+ > use 19.0 or above for graphql-java 19.x and above
43
+
41
44
42
45
It's currently available from Maven Central.
43
46
Original file line number Diff line number Diff line change @@ -31,6 +31,12 @@ version = releaseVersion ? releaseVersion : getDevelopmentVersion()
31
31
println " Building version = " + version
32
32
group = ' com.graphql-java'
33
33
34
+ if (JavaVersion . current() != JavaVersion . VERSION_1_8 ) {
35
+ def msg = String . format(" This build must be run with java 1.8 - you are running %s - gradle finds the JDK via JAVA_HOME=%s" ,
36
+ JavaVersion . current(), System . getenv(" JAVA_HOME" ))
37
+ throw new GradleException (msg)
38
+ }
39
+
34
40
sourceCompatibility = 1.8
35
41
targetCompatibility = 1.8
36
42
@@ -41,7 +47,7 @@ repositories {
41
47
42
48
43
49
dependencies {
44
- compile " com.graphql-java:graphql-java:18.1 "
50
+ compile " com.graphql-java:graphql-java:19.2 "
45
51
46
52
testImplementation ' org.spockframework:spock-core:1.3-groovy-2.5'
47
53
testImplementation(' org.codehaus.groovy:groovy:2.5.13' )
You can’t perform that action at this time.
0 commit comments