kotlin-coroutines-okhttp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.gildor.coroutines</groupId> <artifactId>kotlin-coroutines-okhttp</artifactId> <version>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>ru.gildor.coroutines</groupId> <artifactId>kotlin-coroutines-okhttp</artifactId> <version>1.0</version> <name>kotlin-coroutines-okhttp</name> <description>Coroutine adapter for OkHttp Call</description> <url>https://github.com/gildor/kotlin-coroutines-okhttp</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Andrey Mischenko</name> <email>git@gildor.ru</email> <organizationUrl>https://github.com/gildor</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/gildor/kotlin-coroutines-okhttp.git</connection> <developerConnection>scm:git:https://github.com/gildor/kotlin-coroutines-okhttp.git</developerConnection> <tag>v1.0</tag> <url>https://github.com/gildor/kotlin-coroutines-okhttp</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/gildor/kotlin-coroutines-okhttp/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.3.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core</artifactId> <version>1.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>3.8.0</version> <scope>compile</scope> </dependency> </dependencies> </project>