Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to new Gradle dependency configurations #3723

Merged
merged 3 commits into from
Dec 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Download [the latest JAR][3] or grab via Maven:
```
or Gradle:
```groovy
compile 'com.squareup.okhttp3:okhttp:3.9.1'
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
Expand All @@ -42,7 +42,7 @@ Download [the latest JAR][4] or grab via Maven:
```
or Gradle:
```groovy
testCompile 'com.squareup.okhttp3:mockwebserver:3.9.1'
testImplementation 'com.squareup.okhttp3:mockwebserver:3.9.1'
```

ProGuard
Expand Down
2 changes: 1 addition & 1 deletion mockwebserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Get MockWebServer via Maven:

or via Gradle
```groovy
testCompile 'com.squareup.okhttp3:mockwebserver:(insert latest version)'
testImplementation 'com.squareup.okhttp3:mockwebserver:(insert latest version)'
```

### License
Expand Down
2 changes: 1 addition & 1 deletion okhttp-logging-interceptor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Get via Maven:

or via Gradle
```groovy
compile 'com.squareup.okhttp3:logging-interceptor:(insert latest version)'
implementation 'com.squareup.okhttp3:logging-interceptor:(insert latest version)'
```


Expand Down