Gradle has support for PMD. You can find following example on internet: apply plugin: ‘pmd’ pmdMain { ruleSets = [ “basic”, “strings” ] } This […] Read More
Tag: Gradle
First of all: do not use daemon mode for debugging. IntelliJ Idea is automatically spawning daemon when you start any Gradle task. You have to […] Read More