aboutsummaryrefslogtreecommitdiff
path: root/buildSrc
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2018-02-23 20:52:21 -0500
committerGitHub <noreply@github.com>2018-02-23 20:52:21 -0500
commit3d7c85bd97261116a090a7202b0e0ed2625b5d73 (patch)
treef8d6409ef847a1ca0c0ba3640a27984703de470e /buildSrc
parent20f0d085d6940be30b076a8cff3de25fe4a6e21a (diff)
downloadkau-3d7c85bd97261116a090a7202b0e0ed2625b5d73.tar.gz
kau-3d7c85bd97261116a090a7202b0e0ed2625b5d73.tar.bz2
kau-3d7c85bd97261116a090a7202b0e0ed2625b5d73.zip
Misc (#140)
* Nullify task * Rewrite circle view * Add better encapsulation * Update annotations * Update kpref annotations * Begin writing tests for color picker * Add color selection tests * Update changelog * Cleanup
Diffstat (limited to 'buildSrc')
-rw-r--r--buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy2
-rw-r--r--buildSrc/src/main/groovy/ca/allanwang/kau/Versions.groovy4
2 files changed, 4 insertions, 2 deletions
diff --git a/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy b/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
index 368b0a8..ec3d208 100644
--- a/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
+++ b/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
@@ -7,4 +7,6 @@ class Dependencies {
static def kotlin = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}"
static def kotlinTest = "org.jetbrains.kotlin:kotlin-test-junit:${Versions.kotlin}"
static def junit = "junit:junit:${Versions.junit}"
+ static def espresso = "com.android.support.test.espresso:espresso-core:${Versions.espresso}"
+ static def testRunner = "com.android.support.test:runner:${Versions.testRunner}"
} \ No newline at end of file
diff --git a/buildSrc/src/main/groovy/ca/allanwang/kau/Versions.groovy b/buildSrc/src/main/groovy/ca/allanwang/kau/Versions.groovy
index 36e444d..ac38509 100644
--- a/buildSrc/src/main/groovy/ca/allanwang/kau/Versions.groovy
+++ b/buildSrc/src/main/groovy/ca/allanwang/kau/Versions.groovy
@@ -25,9 +25,9 @@ class Versions {
static def materialDialog = '0.9.6.0'
- static def espresso = '3.0.0'
+ static def espresso = '3.0.1'
static def junit = '4.12'
- static def testRunner = '1.0.0'
+ static def testRunner = '1.0.1'
static def gradlePlugin = '3.0.1'
static def mavenPlugin = '2.0'