PMD Gradle Plugin: Remove pmdTest upon gradle check

后端 未结 1 436
后悔当初
后悔当初 2021-01-13 07:36

I am using the PMD Gradle plugin in a build.gradle file. Is there a way to disable the pmdTest task so that it is not run I execute gradle check ?

Edit:

相关标签:
1条回答
  • 2021-01-13 08:16
    pmd {
        sourceSets = [sourceSets.main]
    }
    

    See PmdExtension in the Gradle Build Language Reference.

    0 讨论(0)
提交回复
热议问题