reactivehttp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.lyft</groupId> <artifactId>reactivehttp</artifactId> <version>0.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.lyft</groupId> <artifactId>reactivehttp</artifactId> <version>0.0.2</version> <packaging>jar</packaging> <name>Reactive Http</name> <description>Reactive http client for Android.</description> <url>https://github.com/lyft/reactive-http</url> <inceptionYear>2013</inceptionYear> <scm> <url>http://github.com/lyft/reactive-http/</url> <connection>scm:git:git://github.com/lyft/reactive-http.git</connection> <developerConnection>scm:git:ssh://git@github.com/lyft/reactive-http.git</developerConnection> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>http://github.com/lyft/reactive-http/issues</url> </issueManagement> <licenses> <license> <name>Apache 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Compilation --> <java.version>1.6</java.version> <!-- Test Dependencies --> <junit.version>4.10</junit.version> </properties> <developers> <developer> <id>zakharov</id> <name>Alexey Zakharov</name> <email>alexey.v.zaharov@gmail.com</email> <url>http://linkd.in/1ciAjms</url> <organization>Lyft</organization> <organizationUrl>http://lyft.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <dependencies> <dependency> <groupId>com.netflix.rxjava</groupId> <artifactId>rxjava-core</artifactId> <version>0.16.1</version> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> </plugins> </build> </project>