Skip to content

Commit 9032afc

Browse files
Create README.md
1 parent 934df5d commit 9032afc

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

Diff for: README.md

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# RxJava Reactive Streams
2+
3+
Bridge between RxJava and [Reactive Streams](http://www.reactive-streams.org).
4+
5+
Learn more about RxJava on the <a href="https://github.com/ReactiveX/RxJava/wiki">Wiki Home</a> and the <a href="http://techblog.netflix.com/2013/02/rxjava-netflix-api.html">Netflix TechBlog post</a> where RxJava was introduced.
6+
7+
## Master Build Status
8+
9+
<a href='https://travis-ci.org/ReactiveX/RxJavaReactiveStreams/builds'><img src='https://travis-ci.org/ReactiveX/RxJavaReactiveStreams.svg?branch=1.x'></a>
10+
11+
## Communication
12+
13+
- Google Group: [RxJava](http://groups.google.com/d/forum/rxjava)
14+
- Twitter: [@RxJava](http://twitter.com/RxJava)
15+
- [GitHub Issues](https://github.com/ReactiveX/RxJava/issues)
16+
17+
18+
## Binaries
19+
20+
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-reactive-streams).
21+
22+
Example for Maven:
23+
24+
```xml
25+
<dependency>
26+
<groupId>io.reactivex</groupId>
27+
<artifactId>rxjava-reactive-streams</artifactId>
28+
<version>x.y.z</version>
29+
</dependency>
30+
```
31+
and for Ivy:
32+
33+
```xml
34+
<dependency org="io.reactivex" name="rxjava-reactive-streams" rev="x.y.z" />
35+
```
36+
37+
## Build
38+
39+
To build:
40+
41+
```
42+
$ git clone [email protected]:ReactiveX/RxJavaReactiveStreams.git
43+
$ cd RxJavaReactiveStreams/
44+
$ ./gradlew build
45+
```
46+
47+
## Bugs and Feedback
48+
49+
For bugs, questions and discussions please use the [Github Issues](https://github.com/ReactiveX/RxJavaReactiveStreams/issues).
50+
51+
52+
## LICENSE
53+
54+
Licensed under the Apache License, Version 2.0 (the "License");
55+
you may not use this file except in compliance with the License.
56+
You may obtain a copy of the License at
57+
58+
<http://www.apache.org/licenses/LICENSE-2.0>
59+
60+
Unless required by applicable law or agreed to in writing, software
61+
distributed under the License is distributed on an "AS IS" BASIS,
62+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
63+
See the License for the specific language governing permissions and
64+
limitations under the License.

0 commit comments

Comments
 (0)