diff options
-rw-r--r-- | buildSrc/README.md | 4 | ||||
-rw-r--r-- | core/build.gradle | 2 | ||||
-rw-r--r-- | sample/build.gradle | 12 |
3 files changed, 9 insertions, 9 deletions
diff --git a/buildSrc/README.md b/buildSrc/README.md index abb6b41..8889675 100644 --- a/buildSrc/README.md +++ b/buildSrc/README.md @@ -65,12 +65,12 @@ The versions are taken from `Versions.groovy`, so it is always in sync. > [Dependencies.groovy](/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy) Contains the dependency string for common libraries. -You are free to use the values through `Dependencies..[tagName]`. +You are free to use the values through `Dependencies.[tagName]`. As an example, adding junit can be done through ```gradle -testImplementation Dependencies..junit +testImplementation Dependencies.junit ``` # Changelog Generator diff --git a/core/build.gradle b/core/build.gradle index 7ffd789..0cba076 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -3,7 +3,7 @@ ext.kauSubModuleMinSdk = Versions.coreMinSdk apply from: '../android-lib.gradle' dependencies { - api Dependencies..kotlin + api Dependencies.kotlin api "androidx.appcompat:appcompat:${Versions.appcompat}" api "androidx.recyclerview:recyclerview:${Versions.recyclerView}" diff --git a/sample/build.gradle b/sample/build.gradle index b443f51..8f408be 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -124,13 +124,13 @@ dependencies { implementation "com.afollestad.material-dialogs:input:${Versions.materialDialog}" - testImplementation Dependencies..kotlinTest - testImplementation Dependencies..junit + testImplementation Dependencies.kotlinTest + testImplementation Dependencies.junit - androidTestImplementation Dependencies..kotlinTest - androidTestImplementation Dependencies..espresso + androidTestImplementation Dependencies.kotlinTest + androidTestImplementation Dependencies.espresso androidTestImplementation "androidx.test.espresso:espresso-intents:${Versions.espresso}" androidTestImplementation "androidx.test.espresso:espresso-contrib:${Versions.espresso}" - androidTestImplementation Dependencies..testRules - androidTestImplementation Dependencies..testRunner + androidTestImplementation Dependencies.testRules + androidTestImplementation Dependencies.testRunner } |