rx-tweet-stream
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.shekhargulati.reactivex</groupId> <artifactId>rx-tweet-stream</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.shekhargulati.reactivex</groupId> <artifactId>rx-tweet-stream</artifactId> <version>0.1.0</version> <name>Rx-Tweet-Stream</name> <description>A RxJava Observable wrapper around Twitter Streaming API</description> <url>https://github.com/shekhargulati/rx-tweet-stream</url> <licenses> <license> <name>MIT</name> </license> </licenses> <developers> <developer> <id>shekhargulati</id> <name>Shekhar Gulati</name> <email>shekhargulati84@gmail.com</email> </developer> </developers> <scm> <connection>https://github.com/shekhargulati/rx-tweet-stream.git</connection> <developerConnection>https://github.com/shekhargulati/rx-tweet-stream.git</developerConnection> <url>https://github.com/shekhargulati/rx-tweet-stream.git</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.18</version> <scope>test</scope> </dependency> <dependency> <groupId>org.twitter4j</groupId> <artifactId>twitter4j-stream</artifactId> <version>4.0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.18</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <version>1.1.1</version> <scope>compile</scope> </dependency> </dependencies> </project>