-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (42 loc) · 738 Bytes
/
build.gradle
File metadata and controls
51 lines (42 loc) · 738 Bytes
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
43
44
45
46
47
48
49
50
51
apply plugin: 'java'
apply plugin: 'checkstyle'
apply plugin: 'pmd'
apply plugin: 'findbugs'
apply plugin: "jacoco"
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.10'
}
checkstyle {
ignoreFailures = true
toolVersion = '6.6'
}
tasks.withType(Checkstyle) {
reports {
xml.enabled = false
html.enabled = true
}
}
pmd {
ignoreFailures = true
}
tasks.withType(Pmd) {
reports {
xml.enabled = false
html.enabled = true
}
}
findbugs {
ignoreFailures = true
effort = "max"
reportLevel = "low"
}
tasks.withType(FindBugs) {
reports {
xml.enabled = false
html.enabled = true
}
}
jacocoTestReport.dependsOn test