mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-23 17:41:34 +01:00
initial import of project
This commit is contained in:
20
02-pmd/build.gradle
Normal file
20
02-pmd/build.gradle
Normal file
@@ -0,0 +1,20 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'pmd'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile group: 'org.testng', name: 'testng', version: '6.+'
|
||||
}
|
||||
|
||||
test {
|
||||
useTestNG()
|
||||
}
|
||||
|
||||
pmdMain {
|
||||
ruleSets = [ "basic", "strings" ]
|
||||
ignoreFailures = true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user