adapter-simple-body
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.easyretrofit</groupId> <artifactId>adapter-simple-body</artifactId> <version>1.2.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/xsd/maven-4.0.0.xsd"> <parent> <groupId>io.github.easyretrofit</groupId> <artifactId>parent</artifactId> <version>3.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <description>When a synchronization request is made, the response value is a JOPO object that is not wrapped by the Call Class of Retrofit, and this JOPO object has the same structure as the returned value of the called API</description> <artifactId>adapter-simple-body</artifactId> <name>adapter-simple-body</name> <version>1.2.0</version> <packaging>jar</packaging> <properties> <junit.version>4.13.2</junit.version> <retrofit.version>3.0.0</retrofit.version> </properties> <url>https://github.com/easyretrofit/${project.artifactId}</url> <scm> <url>https://github.com/easyretrofit/${project.artifactId}</url> <connection>scm:git:git://github.com/easyretrofit/${project.artifactId}.git</connection> <developerConnection>scm:git:ssh://github.com/easyretrofit/${project.artifactId}.git</developerConnection> </scm> <dependencies> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit</artifactId> <version>${retrofit.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>retrofit-mock</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>4.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>adapter-rxjava</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>adapter-rxjava2</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>adapter-rxjava3</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>adapter-guava</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>converter-gson</artifactId> <version>${retrofit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.squareup.retrofit2</groupId> <artifactId>adapter-scala</artifactId> <version>2.11.0</version> <scope>test</scope> </dependency> </dependencies> </project>