blob: 92557e9ad62b541726330b67bd1bef012d0d8844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: Duplications"
}
}
dependencies {
// please keep list ordered
compile 'org.codehaus.sonar:sonar-channel'
compile project(path: ':sonar-plugin-api', configuration: 'shadow')
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.hamcrest:hamcrest-core'
testCompile 'org.mockito:mockito-core'
testCompile 'pmd:pmd:4.3'
}
|