Skip to content

Commit 36f582d

Browse files
authored
Update README.md
1 parent 9d9e4bf commit 36f582d

File tree

1 file changed

+33
-3
lines changed

1 file changed

+33
-3
lines changed

README.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ 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)
7+
[![Jitpack.io](https://jitpack.io/v/introproventures/graphql-jpa-query.svg)](https://jitpack.io/#introproventures/graphql-jpa-query)
68

79
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.
810

@@ -17,6 +19,34 @@ The GraphQL-JPA-Query library consists of the following modules:
1719
3. `graphql-jpa-query-boot-starter`- Provides Spring Boot auto-configuration support to enable GraphQL JPA Query in your project
1820
4. `graphql-jpa-query-example` - Provides example application for Books entity models
1921

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)
23+
------------------------
24+
You can use Maven Central repository to include and build individual modules in your project.
25+
26+
For GraphQL JPA Annotations use:
27+
28+
<dependency>
29+
<groupId>com.introproventures</groupId>
30+
<artifactId>graphql-jpa-query-annotations</artifactId>
31+
<version>0.3.0</version>
32+
</dependency>
33+
34+
For GraphQL JPA Schema Builder use:
35+
36+
<dependency>
37+
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
38+
<artifactId>graphql-jpa-query-schema</artifactId>
39+
<version>0.3.0</version>
40+
</dependency>
41+
42+
For GraphQL JPA Query Boot Starter use:
43+
44+
<dependency>
45+
<groupId>com.introproventures</groupId>
46+
<artifactId>graphql-jpa-query-boot-starter</artifactId>
47+
<version>0.3.0</version>
48+
</dependency>
49+
2050
Building with jitpack.io [![Release](https://jitpack.io/v/introproventures/graphql-jpa-query.svg)](https://jitpack.io/#introproventures/graphql-jpa-query)
2151
------------------------
2252
You can simply use jitpack.io to include and build individual modules in your project. You will need to add jitpack.io repository in our project to resolve required artifacts using valid release tag.
@@ -33,23 +63,23 @@ For GraphQL JPA Annotations use:
3363
<dependency>
3464
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
3565
<artifactId>graphql-jpa-query-annotations</artifactId>
36-
<version>0.2.0</version>
66+
<version>0.3.0</version>
3767
</dependency>
3868

3969
For GraphQL JPA Schema Builder use:
4070

4171
<dependency>
4272
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
4373
<artifactId>graphql-jpa-query-schema</artifactId>
44-
<version>0.2.0</version>
74+
<version>0.3.0</version>
4575
</dependency>
4676

4777
For GraphQL JPA Query Boot Starter use:
4878

4979
<dependency>
5080
<groupId>com.github.introproventures.graphql-jpa-query</groupId>
5181
<artifactId>graphql-jpa-query-boot-starter</artifactId>
52-
<version>0.2.0</version>
82+
<version>0.3.0</version>
5383
</dependency>
5484

5585
Other Dependencies

0 commit comments

Comments
 (0)