Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
Use correct OkHttp dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
royclarkson committed Mar 5, 2016
1 parent 787ce32 commit 295eabd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -159,8 +159,8 @@ project("spring-android-rest-template") {
provided("com.google.android:android:$androidVersion")
compile(project(":spring-android-core"))
optional("org.apache.httpcomponents:httpclient-android:$httpclientVersion")
optional("com.squareup.okhttp3:okhttp-urlconnection:$okHttp3Version")
optional("com.squareup.okhttp:okhttp-urlconnection:$okHttpVersion")
optional("com.squareup.okhttp3:okhttp:$okHttp3Version")
optional("com.squareup.okhttp:okhttp:$okHttpVersion")
optional("com.fasterxml.jackson.core:jackson-databind:$jackson2Version")
optional("com.google.code.gson:gson:$gsonVersion")
optional("org.simpleframework:simple-xml:$simpleXmlVersion") { dep ->
Expand Down
4 changes: 2 additions & 2 deletions test/spring-android-rest-template-test/pom.xml
Expand Up @@ -35,12 +35,12 @@
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp-urlconnection</artifactId>
<artifactId>okhttp</artifactId>
<version>${com.squareup.okhttp3-version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp-urlconnection</artifactId>
<artifactId>okhttp</artifactId>
<version>${com.squareup.okhttp-version}</version>
</dependency>
<dependency>
Expand Down

0 comments on commit 295eabd

Please sign in to comment.