Change/fix indentation of Gradle files

This commit is contained in:
cketti 2014-09-18 15:18:41 +02:00
parent 082dd953b2
commit 4105cdd3cb
6 changed files with 88 additions and 89 deletions

View File

@ -60,7 +60,6 @@ android {
} }
} }
// Do not abort build if lint finds errors // Do not abort build if lint finds errors
lintOptions { lintOptions {
abortOnError false abortOnError false
@ -83,7 +82,7 @@ task checkstyle(type: Checkstyle) {
classpath = files() classpath = files()
} }
task testsOnJVM(type :GradleBuild, dependsOn: assemble) { task testsOnJVM(type: GradleBuild, dependsOn: assemble) {
buildFile = 'tests-on-jvm/build.gradle' buildFile = 'tests-on-jvm/build.gradle'
tasks = ['test'] tasks = ['test']
} }