Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

19.0 release #73

Merged
merged 2 commits into from
Sep 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ You would use custom scalars when you want to describe more meaningful behavior
## How to install
To use this library put the following into your gradle config

implementation 'com.graphql-java:graphql-java-extended-scalars:18.1'
implementation 'com.graphql-java:graphql-java-extended-scalars:19.0'

or the following into your Maven config

<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java-extended-scalars</artifactId>
<version>18.1</version>
<version>19.0</version>
</dependency>

> Note:
Expand All @@ -39,6 +39,9 @@ or the following into your Maven config
> use 17.0 or above for graphql-java 17.x and above
>
> use 18.0 or above for graphql-java 18.x and above
>
> use 19.0 or above for graphql-java 19.x and above


It's currently available from Maven Central.

Expand Down
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ version = releaseVersion ? releaseVersion : getDevelopmentVersion()
println "Building version = " + version
group = 'com.graphql-java'

if (JavaVersion.current() != JavaVersion.VERSION_1_8) {
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",
JavaVersion.current(), System.getenv("JAVA_HOME"))
throw new GradleException(msg)
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Classic error, gets me every time


sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -41,7 +47,7 @@ repositories {


dependencies {
compile "com.graphql-java:graphql-java:18.1"
compile "com.graphql-java:graphql-java:19.2"

testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5'
testImplementation('org.codehaus.groovy:groovy:2.5.13')
Expand Down