Skip to content

Commit

Permalink
Binary examples including SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Jul 14, 2015
1 parent 36845db commit 96786bb
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ All code inside the `rx.internal.*` packages is considered private API and shoul

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).

Example for Maven:
Example for Gradle:

```groovy
compile 'io.reactivex:rxjava:x.y.z'
```

and for Maven:

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

Snapshots are available via [JFrog](https://oss.jfrog.org/webapp/search/artifact/?5&q=rxjava):

```groovy
repositories {
maven { url 'https://oss.jfrog.org/libs-snapshot' }
}
dependencies {
compile 'io.reactivex:rxjava:1.0.y-SNAPSHOT'
}
```

## Build

To build:
Expand Down

0 comments on commit 96786bb

Please sign in to comment.