aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-06-07 14:23:07 -0400
committerAllan Wang <me@allanwang.ca>2019-06-07 14:23:07 -0400
commit940b3142f0a1364ba56e5117e16da51207c44d44 (patch)
tree7c480d12be3eb637d3542536d28af8d4339d67bb
parent6fedbcdbc51e3cbc93b920f3fda573e1d2ec780b (diff)
downloadkau-940b3142f0a1364ba56e5117e16da51207c44d44.tar.gz
kau-940b3142f0a1364ba56e5117e16da51207c44d44.tar.bz2
kau-940b3142f0a1364ba56e5117e16da51207c44d44.zip
Remove extra period
-rw-r--r--buildSrc/README.md4
-rw-r--r--core/build.gradle2
-rw-r--r--sample/build.gradle12
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
}