Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PMD, checkstyle and findbugs android setup

how can I setup PMD, Findbugs and Checkstyle static code analysis tools for an Android project using the latest version of gradle? I tried several thing but I don't manage to make them work.

Thanks

like image 879
Juan Yanez Avatar asked Mar 06 '15 01:03

Juan Yanez


1 Answers

Checkstyle / PMD

There is a nice plugin you can use for checkstyle and pmd. Just add

buildscript {
    repositories {
        // ...
    }
    dependencies {
        // ...
        classpath 'com.android.tools.build:gradle:1.2.3'

        // Enables checkStyle and pmd gradle support for android modules
        classpath 'com.noveogroup.android:check:1.1.2'
    }
}

to your global gradle.build and use it in your module(s) like the following:

apply plugin: 'com.noveogroup.android.check'

check {
    abortOnError false
    checkstyle {
        config "$rootProject.rootDir/path/to/your/checkstyle.xml"
    }
    pmd {
        config "$rootProject.rootDir/path/tp/your/pmd-ruleset.xml"
    }
}

or any of these configurations:

// configuration is optional
check {
    // skip source code checking or not, false by default
    skip true/false
    // fails build if code style violation is found, false by default
    abortOnError true/false

    checkstyle {
        // skip Checkstyle, false by deafult
        skip true/false
        // fails build if Checkstyle rule violation is found, false by default
        abortOnError true/false
        // configuration file
        config project.file('path/to/checkstyle.xml')
        // configuration resource
        // see http://gradle.org/docs/2.2/release-notes#sharing-configuration-files-across-builds
        config resources.text.fromFile(someTask)
        // configuration path
        config 'path/to/checkstyle.xml'
        // predefined configurations: easy and hard
        config easy()
        config hard()
        // plugin find configuration file in project.file('config/checkstyle.xml') by default
        // if there are no configuration file, easy() configuration will be used
    }

    pmd {
        // the same configuration as for Checkstyle
        // plugin find configuration file in project.file('config/pmd.xml') by default
        // if there are no configuration file, easy() configuration will be used
    }
}

Here you can find the plugin's homepage and source code.

Findbugs

// UPDATE //

The latest plugin by noveogroup (1.2.3) now also supports findbugs. So you can customize it the same way like checkstyle or pmd:

// configuration of FindBugs checker
findbugs {
  // the same configuration as for Checkstyle

  // by default plugin finds configuration file in <rootProject>/config/findbugs.xml,
  // after that in <project>/config/findbugs.xml and if there are no configuration
  // file, easy() configuration will be used.
}

// UPDATE END //

I run the findbugs check with the following gradle script snippet which you add to your module's build.gradle:

apply plugin: 'findbugs'

task customFindbugs(type: FindBugs) {
    ignoreFailures = true
    effort = "default"
    reportLevel = "medium"
    classes = files("$project.buildDir/intermediates/classes")
    excludeFilter = file("$rootProject.rootDir/config/findbugs/exclude.xml")

    source = fileTree('src/main/java/')
    classpath = files()
    reports {
        xml.enabled = false
        xml.withMessages = true
        html.enabled = !xml.isEnabled()
        xml.destination "$project.buildDir/outputs/findbugs/findbugs-output.xml"
        html.destination "$project.buildDir/outputs/findbugs/findbugs-output.html"
    }
}
// UPDATE: renamed the task to customFindbugs and made it automatically be called when build is called
build.dependsOn customFindbugs

My exclude.xml looks like the following:

<FindBugsFilter>
    <Match>
       <Class name="~.*R\$.*"/>
    </Match>
    <Match>
        <Class name="~.*Manifest\$.*"/>
    </Match>
    <Match>
        <Class name="~.*_"/>
    </Match>
</FindBugsFilter>

whereas the last check is used to omit classes generated by AndroidAnnotations and you most likely won't use this check...

After that I'm able to run the task by

./gradlew customFindbugs
// or it is also included in the build task like the checks, too
./gradlew build
like image 164
luckyhandler Avatar answered Oct 11 '22 05:10

luckyhandler