OkHttp Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki

OkHttp

OkHttp Maven Dependency

Copy below OkHttp maven dependency and paste in your project pom.xml file:

<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
<dependency>
    <groupId>com.squareup.okhttp3</groupId>
    <artifactId>okhttp</artifactId>
    <version>4.2.2</version>
</dependency>

OkHttp Gradle Dependency

Copy below OkHttp gradle dependency and paste in your project build.gradle file:

// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'

Download JAR File

https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/4.2.2/okhttp-4.2.2.jar

Check for Latest Release

https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp

Reference

https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp

⚠️ **GitHub.com Fallback** ⚠️