Skip to content

Commit 96786bb

Browse files
Binary examples including SNAPSHOT
1 parent 36845db commit 96786bb

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,13 @@ All code inside the `rx.internal.*` packages is considered private API and shoul
5858

5959
Binaries and dependency information for Maven, Ivy, Gradle and others can be found at [http://search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cio.reactivex.rxjava).
6060

61-
Example for Maven:
61+
Example for Gradle:
62+
63+
```groovy
64+
compile 'io.reactivex:rxjava:x.y.z'
65+
```
66+
67+
and for Maven:
6268

6369
```xml
6470
<dependency>
@@ -73,6 +79,18 @@ and for Ivy:
7379
<dependency org="io.reactivex" name="rxjava" rev="x.y.z" />
7480
```
7581

82+
Snapshots are available via [JFrog](https://oss.jfrog.org/webapp/search/artifact/?5&q=rxjava):
83+
84+
```groovy
85+
repositories {
86+
maven { url 'https://oss.jfrog.org/libs-snapshot' }
87+
}
88+
89+
dependencies {
90+
compile 'io.reactivex:rxjava:1.0.y-SNAPSHOT'
91+
}
92+
```
93+
7694
## Build
7795

7896
To build:

0 commit comments

Comments
 (0)