Skip to content

Commit f3ede8b

Browse files
committed
revert doc changes: still point to bintray for now
1 parent 36e8f21 commit f3ede8b

File tree

1 file changed

+24
-11
lines changed

1 file changed

+24
-11
lines changed

docs/getting_started.rst

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,25 +48,25 @@ This is the famous "hello world" in ``graphql-java``:
4848
:language: java
4949

5050

51-
Using a development build
52-
-------------------------
51+
Using the latest development build
52+
----------------------------------
5353

54-
Every successful build is published on maven-central with the version "<time>-<short git hash>".
55-
For example "2018-06-04T11-42-58-352f0df".
54+
The latest development build is available on Bintray.
5655

5756
Please look at `Latest Build <https://bintray.com/andimarek/graphql-java/graphql-java/_latestVersion>`_ for the
5857
latest version value.
5958

6059

61-
How to use a development build with Gradle
62-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
60+
How to use the latest build with Gradle
61+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6362

64-
Make sure ``mavenCentral`` is among your repos:
63+
Add the repositories:
6564

6665
.. code-block:: groovy
6766
6867
repositories {
6968
mavenCentral()
69+
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
7070
}
7171
7272
@@ -75,14 +75,27 @@ Dependency:
7575
.. code-block:: groovy
7676
7777
dependencies {
78-
compile 'com.graphql-java:graphql-java:INSERT_VERSION_HERE'
78+
compile 'com.graphql-java:graphql-java:INSERT_LATEST_VERSION_HERE'
7979
}
8080
8181
8282
83-
How to use a development build with Maven
84-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
83+
How to use the latest build with Maven
84+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
85+
86+
87+
Add the repository:
88+
89+
.. code-block:: xml
8590
91+
<repository>
92+
<snapshots>
93+
<enabled>false</enabled>
94+
</snapshots>
95+
<id>bintray-andimarek-graphql-java</id>
96+
<name>bintray</name>
97+
<url>http://dl.bintray.com/andimarek/graphql-java</url>
98+
</repository>
8699
87100
Dependency:
88101

@@ -91,7 +104,7 @@ Dependency:
91104
<dependency>
92105
<groupId>com.graphql-java</groupId>
93106
<artifactId>graphql-java</artifactId>
94-
<version>INSERT_VERSION_HERE</version>
107+
<version>INSERT_LATEST_VERSION_HERE</version>
95108
</dependency>
96109
97110

0 commit comments

Comments
 (0)