# HG changeset patch # User Da Risk # Date 1434440892 -7200 # Node ID 5e3cb33d9fe49078427c9f044d013f3138ffcb04 # Parent 401b33f78a4da6ef9c7d7ad30cb7124be31e3c1e Exclude com.gogle.iosched from the checkstyle task diff -r 401b33f78a4d -r 5e3cb33d9fe4 tools/android-checkstyle.gradle --- a/tools/android-checkstyle.gradle Mon Jun 15 20:58:21 2015 +0200 +++ b/tools/android-checkstyle.gradle Tue Jun 16 09:48:12 2015 +0200 @@ -64,7 +64,9 @@ sourceSet.java.each { file -> file.getSrcDirs().each { if (it.exists()) { - fileset(dir: it) + fileset(dir: it) { + exclude (name: '**/com/google/android/apps/iosched/util/*.java') + } } } }