blob: 540f457de8f4e347296b9f9d35dc8e908f028125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: Duplications"
}
}
dependencies {
compile 'org.codehaus.sonar:sonar-channel'
compileOnly 'com.google.code.findbugs:jsr305'
testCompile 'ch.qos.logback:logback-classic'
testCompile 'commons-io:commons-io'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
testCompile 'pmd:pmd:4.3'
}
|