-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeAnalysis.gradle
42 lines (36 loc) · 985 Bytes
/
codeAnalysis.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
apply plugin: 'checkstyle'
apply plugin: 'pmd'
checkstyle {
toolVersion = "6.19"
}
pmd {
toolVersion = '5.4.0'
consoleOutput= true
ignoreFailures = false
ruleSetFiles = files("config/pmd/ruleset.xml")
reportsDir = file("build/reports/pmd")
}
tasks.withType(Pmd){
reports {
xml.enabled true
html.enabled true
}
}
task checkApiIsRaml(type:Exec) {
executable "raml-cop"
args "src/main/resources/api-definition.yaml"
}
configure(checkApiIsRaml) {
group = JavaBasePlugin.VERIFICATION_GROUP
description = 'Verify that the api-specification is valid RAML'
}
//Usage: gradle sonarqube
sonarqube {
properties {
property "sonar.projectKey", "OpenLMIS-Angola_angola-reports"
property "sonar.organization", "openlmis-angola"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.java.source", "17"
property "sonar.coverage.jacoco.xmlReportPaths", "./report.xml"
}
}