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 @@ -18,14 +18,14 @@ You would use custom scalars when you want to describe more meaningful behavior
18
18
## How to install
19
19
To use this library put the following into your gradle config
20
20
21
- implementation 'com.graphql-java:graphql-java-extended-scalars:18.1 '
21
+ implementation 'com.graphql-java:graphql-java-extended-scalars:19.0 '
22
22
23
23
or the following into your Maven config
24
24
25
25
<dependency>
26
26
<groupId>com.graphql-java</groupId>
27
27
<artifactId>graphql-java-extended-scalars</artifactId>
28
- <version>18.1 </version>
28
+ <version>19.0 </version>
29
29
</dependency>
30
30
31
31
> Note:
@@ -39,6 +39,9 @@ or the following into your Maven config
39
39
> use 17.0 or above for graphql-java 17.x and above
40
40
>
41
41
> use 18.0 or above for graphql-java 18.x and above
42
+ >
43
+ > use 19.0 or above for graphql-java 19.x and above
44
+
42
45
43
46
It's currently available from Maven Central.
44
47
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