diff options
author | Allan Wang <me@allanwang.ca> | 2020-06-21 22:13:56 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2020-06-21 22:13:56 -0700 |
commit | cd24bc8175938ff289c48a6ec3bb956cc22fb79e (patch) | |
tree | 742e4385983c02dcca48534c665fd73738dbd277 /buildSrc | |
parent | 69b2d504934eab4e69b7ef9a574c6c7560cee54b (diff) | |
download | kau-cd24bc8175938ff289c48a6ec3bb956cc22fb79e.tar.gz kau-cd24bc8175938ff289c48a6ec3bb956cc22fb79e.tar.bz2 kau-cd24bc8175938ff289c48a6ec3bb956cc22fb79e.zip |
Update deps and add base test class
Diffstat (limited to 'buildSrc')
-rw-r--r-- | buildSrc/src/main/kotlin/kau/Versions.kt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/buildSrc/src/main/kotlin/kau/Versions.kt b/buildSrc/src/main/kotlin/kau/Versions.kt index e6bccc8..f4ca30d 100644 --- a/buildSrc/src/main/kotlin/kau/Versions.kt +++ b/buildSrc/src/main/kotlin/kau/Versions.kt @@ -60,15 +60,16 @@ object Versions { const val leakCanary = "2.2" // https://mvnrepository.com/artifact/androidx.test.espresso/espresso-core?repo=google - const val espresso = "3.2.0" + const val espresso = "3.3.0-rc01" // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api - const val junit = "4.12" + const val junit = "4.13" - const val testRunner = "1.1.0" + // https://mvnrepository.com/artifact/androidx.test.ext/junit + const val testRunner = "1.1.2-rc01" // https://mvnrepository.com/artifact/androidx.test/rules?repo=google - const val testRules = "1.2.0" + const val testRules = "1.3.0-rc01" // Keep version for now, see https://github.com/diffplug/spotless/issues/521 // https://github.com/diffplug/spotless/blob/master/plugin-gradle/CHANGES.md |