Skip to content

Commit eb82c4a

Browse files
committed
Updated README to include new group and jcenter repository
1 parent 3b05040 commit eb82c4a

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

README.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/graphql-java-kickstart/graphql-java-servlet.svg?branch=master)](https://travis-ci.org/graphql-java/graphql-java-servlet)
1+
[![Build Status](https://travis-ci.org/graphql-java-kickstart/graphql-java-servlet.svg?branch=master)](https://travis-ci.org/graphql-java-kickstart/graphql-java-servlet)
22
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.graphql-java/graphql-java-servlet/badge.svg?service=github)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java/graphql-java-servlet)
33
[![Chat on Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/graphql-java-kickstart/Lobby)
44

@@ -8,26 +8,42 @@ This module implements a GraphQL Java Servlet. It also supports Relay.js, Apollo
88

99
# Downloading
1010

11-
You can download releases from maven central:
11+
You can download releases from jcenter and maven central:
1212

1313
```groovy
1414
repositories {
15+
jcenter()
1516
mavenCentral()
1617
}
1718
1819
dependencies {
19-
compile 'com.graphql-java:graphql-java-servlet:6.0.0'
20+
compile 'com.graphql-java-kickstart:graphql-java-servlet:6.1.4'
2021
}
2122
```
2223

2324
```xml
2425
<dependency>
25-
<groupId>com.graphql-java</groupId>
26+
<groupId>com.graphql-java-kickstart</groupId>
2627
<artifactId>graphql-java-servlet</artifactId>
27-
<version>6.0.0</version>
28+
<version>6.1.4</version>
2829
</dependency>
2930
```
3031

32+
```xml
33+
<repositories>
34+
<repository>
35+
<id>jcenter</id>
36+
<url>https://jcenter.bintray.com/</url>
37+
</repository>
38+
</repositories>
39+
```
40+
For Gradle:
41+
```groovy
42+
repositories {
43+
jcenter()
44+
}
45+
```
46+
3147
# Usage
3248

3349
The servlet supports the following request formats:

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ bintray {
168168
userOrg = 'graphql-java-kickstart'
169169
version {
170170
name = project.version
171-
vcsTag = 'v${project.version}'
172171
}
173172
}
174173
}

0 commit comments

Comments
 (0)