re-core-http-okhttp.1.12.6.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-core-http-okhttp Show documentation
Show all versions of azure-core-http-okhttp Show documentation
This package contains the OkHttp HTTP client plugin for azure-core.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
module com.azure.core.http.okhttp {
requires transitive com.azure.core;
requires okhttp3;
requires okio;
requires kotlin.stdlib;
exports com.azure.core.http.okhttp;
provides com.azure.core.http.HttpClientProvider with com.azure.core.http.okhttp.OkHttpAsyncClientProvider;
uses com.azure.core.http.HttpClientProvider;
}