apply plugin: 'java' apply plugin: 'pmd' apply plugin: 'checkstyle' repositories { mavenCentral() } dependencies { testCompile group: 'org.testng', name: 'testng', version: '6.+' } test { useTestNG() } pmdMain { ruleSets = [ "basic", "strings" ] ignoreFailures = true } tasks.withType(Checkstyle) { ignoreFailures = true }