retrofit2-rxjava2-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jakewharton.retrofit</groupId> <artifactId>retrofit2-rxjava2-adapter</artifactId> <version>1.0.0</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.jakewharton.retrofit</groupId> <artifactId>retrofit2-rxjava2-adapter</artifactId> <version>1.0.0</version> <name>Retrofit 2 OkHttp 2 Adapter</name> <description>A RxJava 2 CallAdapter.Facotry implementation for Retrofit 2.</description> <inceptionYear>2016</inceptionYear> <scm> <url>http://github.com/JakeWharton/retrofit2-rxjava2-adapter</url> <connection>scm:git:git://github.com/JakeWharton/retrofit2-rxjava2-adapter.git</connection> <developerConnection>scm:git:git@github.com:JakeWharton/retrofit2-rxjava2-adapter.git</developerConnection> </scm> <issueManagement> <system>GitHub Issues</system> <url>http://github.com/JakeWharton/retrofit2-rxjava2-adapter/issues</url> </issueManagement> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.7</java.version> </properties> <dependencies> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>3.4.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>0.29</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> </plugins> </build> </project>