Skip to content

Commit

Permalink
Use implementation instead of compile in gradle scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Feb 10, 2018
1 parent eb385ee commit 13347e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
}

dependencies {
compile project(':timberkt')
implementation project(':timberkt')

compile deps.kotlinStdlib
compile deps.timber
implementation deps.kotlinStdlib
implementation deps.timber
}
12 changes: 6 additions & 6 deletions timberkt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ android {
}

dependencies {
compile deps.kotlinStdlib
compile deps.timber
api deps.kotlinStdlib
api deps.timber

testCompile deps.junit
testCompile(deps.mockitoKotlin) { exclude module: 'kotlin-stdlib' }
testCompile deps.assertj
testCompile deps.robolectric
testImplementation deps.junit
testImplementation(deps.mockitoKotlin) { exclude module: 'kotlin-stdlib' }
testImplementation deps.assertj
testImplementation deps.robolectric
}

task sourcesJar(type: Jar) {
Expand Down

0 comments on commit 13347e2

Please sign in to comment.