lint.gradle 381 B

12345678910111213141516171819
  1. apply plugin: 'checkstyle'
  2. apply plugin: 'findbugs'
  3. checkstyle {
  4. configProperties.checkstyleConfigDir = "."
  5. configFile = new File(rootDir, 'checkstyle.xml')
  6. ignoreFailures false
  7. toolVersion = '6.7'
  8. }
  9. findbugs {
  10. toolVersion = '3.0.1'
  11. ignoreFailures true
  12. omitVisitors = ['RuntimeExceptionCapture']
  13. }
  14. tasks.withType(FindBugs) {
  15. maxHeapSize = '2g'
  16. }