Skip to content

Commit fe88546

Browse files
authored
Update Gradle, Kotlin and Google Truth dependencies (#13)
- Update Gradle to version 5.5.1 - Update Kotlin to version 1.3.41 - Update Google Truth to version 1.0 🎉
1 parent fb6cbff commit fe88546

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ext {
33
minSdk : 19,
44
targetSdk : 29,
55
compileSdk: 29,
6-
kotlin : "1.3.40"
6+
kotlin : "1.3.41"
77
]
88
projectDependency = [
99

@@ -17,7 +17,7 @@ ext {
1717

1818
// Test dependencies
1919
junit : "junit:junit:4.12",
20-
truth : "com.google.truth:truth:0.45",
20+
truth : "com.google.truth:truth:1.0",
2121
supportTestRunner : "androidx.test:runner:1.1.1",
2222
espressoCore : "androidx.test.espresso:espresso-core:3.1.1",
2323
androidJUnit : "androidx.test.ext:junit:1.1.0",

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-all.zip

plugin/src/test/kotlin/org/neotech/plugin/rootcoverage/IntegrationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class IntegrationTest(
5353

5454
val testFixtures = File("src/test/test-fixtures").listFiles()?.filter { it.isDirectory }
5555
?: error("Could not list test fixture directories")
56-
val gradleVersions = arrayOf("5.1.1", "5.2.1", "5.4.1")
56+
val gradleVersions = arrayOf("5.1.1", "5.2.1", "5.4.1", "5.5.1")
5757

5858
return testFixtures.flatMap { file ->
5959
gradleVersions.map { gradleVersion ->

0 commit comments

Comments
 (0)