mirror of
https://github.com/apache/jclouds.git
synced 2025-02-07 10:39:03 +00:00
ef580d4aa7
Bumps [okio](https://github.com/square/okio) from 1.17.2 to 3.4.0. - [Changelog](https://github.com/square/okio/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okio/compare/okio-parent-1.17.2...parent-3.4.0) --- updated-dependencies: - dependency-name: com.squareup.okio:okio dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
jclouds OkHttp driver
A driver to use the OkHttp (http://square.github.io/okhttp/) client as an HTTP library in jclouds.
To use the driver, you just need to include the OkHttpCommandExecutorServiceModule
when creating
the context:
ContextBuilder.newBuilder("provider")
.endpoint("endpoint")
.credentials("identity", "credential")
.modules(ImmutableSet.of(new OkHttpCommandExecutorServiceModule()))
.build();