Skip to content

Commit 156f232

Browse files
authored
Upgrade to graphql-java 6.0 (#26)
* Upgrade to GraphQL-Java 6.0 Fixes #24
1 parent 6306ffb commit 156f232

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.gitignore

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ build/
1515

1616
# Maven
1717
log/
18-
target/
19-
.factorypath
20-
21-
graphql-jpa-query-annotations/\.project
22-
23-
graphql-jpa-query-schema/\.project
18+
target/
19+
.factorypath
20+
21+
# Eclipse
22+
.project
23+
.springBeans
24+
25+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GraphQL Query for JPA Entity Model
33

44
[![Build Status](https://travis-ci.org/introproventures/graphql-jpa-query.svg?branch=master)](https://travis-ci.org/introproventures/graphql-jpa-query)
55
[![codecov](https://codecov.io/gh/introproventures/graphql-jpa-query/branch/master/graph/badge.svg)](https://codecov.io/gh/introproventures/graphql-jpa-query)
6-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.introproventures/graphql-jpa-query/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.introproventures/graphql-jpa-query)
6+
[![Maven Central](https://img.shields.io/maven-central/v/com.introproventures/graphql-jpa-query.svg)](https://mvnrepository.com/artifact/com.introproventures/graphql-jpa-query)
77
[![Jitpack.io](https://jitpack.io/v/introproventures/graphql-jpa-query.svg)](https://jitpack.io/#introproventures/graphql-jpa-query)
88

99
This library uses [graphql-java v3.0](https://github.com/andimarek/graphql-java) to derive and build the GraphQL schema from JPA Entity Schema provided by entity classes.
@@ -19,7 +19,7 @@ The GraphQL-JPA-Query library consists of the following modules:
1919
3. `graphql-jpa-query-boot-starter`- Provides Spring Boot auto-configuration support to enable GraphQL JPA Query in your project
2020
4. `graphql-jpa-query-example` - Provides example application for Books entity models
2121

22-
Building with Maven Central [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.introproventures/graphql-jpa-query/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.introproventures/graphql-jpa-query)
22+
Building with Maven Central [![Maven Central](https://img.shields.io/maven-central/v/com.introproventures/graphql-jpa-query.svg)](https://mvnrepository.com/artifact/com.introproventures/graphql-jpa-query)
2323
------------------------
2424
You can use Maven Central repository to include and build individual modules in your project.
2525

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2626

2727
<java.version>1.8</java.version>
28-
<graphql-java.version>5.0</graphql-java.version>
28+
<graphql-java.version>6.0</graphql-java.version>
2929
</properties>
3030

3131
<modules>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>io.spring.platform</groupId>
5858
<artifactId>platform-bom</artifactId>
59-
<version>Brussels-SR4</version>
59+
<version>Brussels-SR6</version>
6060
<type>pom</type>
6161
<scope>import</scope>
6262
</dependency>

0 commit comments

Comments
 (0)