Skip to content

Commit f9f53c4

Browse files
authored
Update README.md
1 parent 9f33a79 commit f9f53c4

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,26 @@ This module implements a Relay.js-compatible GraphQL server. It also supports OS
77

88
# Downloading
99

10-
You can download it from bintray (Gradle syntax):
10+
You can download it from maven central:
1111

1212
```groovy
1313
repositories {
14-
mavenCentral()
14+
mavenCentral()
1515
}
1616
1717
dependencies {
18-
compile 'com.graphql-java:graphql-java-servlet:0.7.0'
18+
compile 'com.graphql-java:graphql-java-servlet:0.10.0'
1919
}
2020
```
2121

22+
```xml
23+
<dependency>
24+
<groupId>com.graphql-java</groupId>
25+
<artifactId>graphql-java-servlet</artifactId>
26+
<version>0.10.0</version>
27+
</dependency>
28+
```
29+
2230
# Usage
2331

2432
The are a few important components this package provides:

0 commit comments

Comments
 (0)