Skip to content

Commit

Permalink
Use 'implementation' gradle keyword instead of 'compile'
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowdalic committed Mar 1, 2018
1 parent d4d2fb3 commit 25ff1e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java-pinning-android/build.gradle
Expand Up @@ -16,7 +16,7 @@ android {
}

dependencies {
compile project(':java-pinning-core')
implementation project(':java-pinning-core')
}

uploadArchives {
Expand Down
4 changes: 2 additions & 2 deletions java-pinning-java7/build.gradle
@@ -1,4 +1,4 @@
dependencies {
compile project(':java-pinning-core')
testCompile project(path: ':java-pinning-core', configuration: 'testRuntime')
implementation project(':java-pinning-core')
testImplementation project(path: ':java-pinning-core', configuration: 'testRuntime')
}

0 comments on commit 25ff1e3

Please sign in to comment.