summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMaurice Lam <yukl@google.com>2015-08-18 18:38:47 -0700
committerMaurice Lam <yukl@google.com>2015-08-18 18:38:47 -0700
commite23a451a802972ad3bf8c2cf3803f222f3c6ac51 (patch)
treea4047939506d8690674fd024602d895209fa7574 /tools
parent3fa6e08ea0e8b2a9deff3096893cfa49761e2ac7 (diff)
downloadsetupwizard-e23a451a802972ad3bf8c2cf3803f222f3c6ac51.tar.gz
[SuwLib] Output lint in stderr
Put lint output in stderr so that lint errors catched in build server can be seen. Also removed the workaround to capture lint output in log since that issue has been fixed. Change-Id: I30a5695faa3facdb8986d5a66975c9ea3dc7bf8f
Diffstat (limited to 'tools')
-rw-r--r--tools/gradle/android.properties8
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/gradle/android.properties b/tools/gradle/android.properties
index dbe836f..fad7480 100644
--- a/tools/gradle/android.properties
+++ b/tools/gradle/android.properties
@@ -6,14 +6,6 @@ buildToolsVersion = '21.1.2'
compileOptions.sourceCompatibility JavaVersion.VERSION_1_7
compileOptions.targetCompatibility JavaVersion.VERSION_1_7
-// Redirect lint output so that failures appear in build server error logs
-// https://code.google.com/p/android/issues/detail?id=73282
-project.tasks.whenTaskAdded { task ->
- if (task.name =~ /^lintVital/) {
- task.logging.captureStandardOutput(LogLevel.ERROR)
- }
-}
-
// Don't build tests for android-library or android plugin
// unless explicitly enabled
buildTests = false