Skip to content

Commit 57401b2

Browse files
committed
Bump gradle and android build tools version. Fix data layer unit test task name.
1 parent 0879354 commit 57401b2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ allprojects {
2525

2626
task wrapper(type: Wrapper) {
2727
description 'Creates the gradle wrapper.'
28-
gradleVersion '2.6'
28+
gradleVersion '2.8'
2929
}
3030

3131
task runDomainUnitTests(dependsOn: [':domain:test']) {
3232
description 'Run unit tests for the domain layer.'
3333
}
3434

35-
task runDataUnitTests(dependsOn: [':data:cleanTestDebug', ':data:testDebug']) {
35+
task runDataUnitTests(dependsOn: [':data:cleanTestDebugUnitTest', ':data:testDebugUnitTest']) {
3636
description 'Run unit tests for the data layer.'
3737
}
3838

buildsystem/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ allprojects {
66

77
ext {
88
//Android
9-
androidBuildToolsVersion = "21.1.2"
9+
androidBuildToolsVersion = "23.0.1"
1010
androidMinSdkVersion = 15
1111
androidTargetSdkVersion = 21
1212
androidCompileSdkVersion = 21
@@ -79,4 +79,4 @@ ext {
7979
mockito: "org.mockito:mockito-core:${mockitoVersion}",
8080
robolectric: "org.robolectric:robolectric:${robolectricVersion}",
8181
]
82-
}
82+
}

gradle/wrapper/gradle-wrapper.jar

1.34 KB
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Aug 31 10:46:18 CEST 2015
1+
#Tue Nov 17 23:40:11 CET 2015
22
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-2.6-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-bin.zip

0 commit comments

Comments
 (0)