Eric Francis
Eric Francis

Reputation: 24297

PMD Gradle Plugin: Remove pmdTest upon gradle check

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: In the question I say 'remove'. I really mean 'disable'.

Upvotes: 5

Views: 4131

Answers (1)

Peter Niederwieser
Peter Niederwieser

Reputation: 123960

pmd {
    sourceSets = [sourceSets.main]
}

See PmdExtension in the Gradle Build Language Reference.

Upvotes: 9

Related Questions