Inspired by Qulice
Quanta aggregates multiple quality checks in one gradle plugin.
Included tools:
- Checkstyle
- PMD
- Android lint
- Findbugs
- Add plugin to your buildscript
// root build.gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.g4s8:quanta:0.1.1'
}
}// app build.gradle
apply plugin: 'com.g4s8.quanta'- Run
./gradlew checkchecktask will trigger all analyzer tasks:checkstyle,pmd,lint,findbugs
- Thank @yegor256 for idea
- Thank @vincentbrison for some configuration files