使用Gradle自定义PMD规则

我想在一个用gradle构建的企业项目中使用gradle PMD插件。

我有一个已经可以工作的pmd_rules.xml文件,但我不能添加自己的java规则(我得到一个没有发现异常的类)。 我在网站上跟着教程。

我在哪里必须制定自己的规则,以便通过Gradle和PMD得到认可? 有人已经做过这样的事情吗?

pmd.gradle:

apply from: rootProject.file("core/modules.gradle"), to : ext

if(project.name in (modules["modules"] +modules["modules"])){
    apply plugin: 'pmd'

    pmd {
        ignoreFailures = true
        ruleSetFiles = rootProject.files("../repo/pmd_rules.xml")
        sourceSets = [sourceSets.main,sourceSets.test]
        targetJdk = org.gradle.api.plugins.quality.TargetJdk.VERSION_1_7
        ruleSets = []
        toolVersion = "5.0.5"
    }
}

tasks.withType(Pmd) {
    pmdClasspath += file("path/to/rules.jar")
}
链接地址: http://www.djcxy.com/p/23061.html

上一篇: Custom PMD rule with Gradle

下一篇: Debug view hierarchy does not render UI