Skip to content
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
14 changes: 8 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ build/

# Maven
log/
target/
.factorypath

graphql-jpa-query-annotations/\.project

graphql-jpa-query-schema/\.project
target/
.factorypath

# Eclipse
.project
.springBeans


4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GraphQL Query for JPA Entity Model

[![Build Status](https://travis-ci.org/introproventures/graphql-jpa-query.svg?branch=master)](https://travis-ci.org/introproventures/graphql-jpa-query)
[![codecov](https://codecov.io/gh/introproventures/graphql-jpa-query/branch/master/graph/badge.svg)](https://codecov.io/gh/introproventures/graphql-jpa-query)
[![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)
[![Maven Central](https://img.shields.io/maven-central/v/com.introproventures/graphql-jpa-query.svg)](https://mvnrepository.com/artifact/com.introproventures/graphql-jpa-query)
[![Jitpack.io](https://jitpack.io/v/introproventures/graphql-jpa-query.svg)](https://jitpack.io/#introproventures/graphql-jpa-query)

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.
Expand All @@ -19,7 +19,7 @@ The GraphQL-JPA-Query library consists of the following modules:
3. `graphql-jpa-query-boot-starter`- Provides Spring Boot auto-configuration support to enable GraphQL JPA Query in your project
4. `graphql-jpa-query-example` - Provides example application for Books entity models

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)
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)
------------------------
You can use Maven Central repository to include and build individual modules in your project.

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<java.version>1.8</java.version>
<graphql-java.version>5.0</graphql-java.version>
<graphql-java.version>6.0</graphql-java.version>
</properties>

<modules>
Expand Down Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>io.spring.platform</groupId>
<artifactId>platform-bom</artifactId>
<version>Brussels-SR4</version>
<version>Brussels-SR6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down