File tree Expand file tree Collapse file tree 1 file changed +18
-21
lines changed Expand file tree Collapse file tree 1 file changed +18
-21
lines changed Original file line number Diff line number Diff line change 1
1
subprojects {
2
- // Checkstyle
3
- apply plugin : ' checkstyle'
4
- checkstyle {
5
- ignoreFailures = true
6
- configFile = rootProject. file(' codequality/checkstyle.xml' )
7
- }
2
+ apply plugin : ' checkstyle'
3
+ checkstyle {
4
+ ignoreFailures = true
5
+ configFile = rootProject. file(' codequality/checkstyle.xml' )
6
+ }
8
7
9
- // FindBugs
10
- apply plugin : ' findbugs'
11
- findbugs {
12
- ignoreFailures = true
13
- }
8
+ apply plugin : ' findbugs'
9
+ findbugs {
10
+ ignoreFailures = true
11
+ }
14
12
15
- // PMD
16
- apply plugin : ' pmd'
17
- // tasks.withType(Pmd) { reports.html.enabled true }
13
+ apply plugin : ' pmd'
14
+ // tasks.withType(Pmd) { reports.html.enabled true }
18
15
19
- apply plugin : ' cobertura'
20
- cobertura {
21
- sourceDirs = sourceSets. main. java. srcDirs
22
- format = ' html'
23
- includes = [' **/*.java' , ' **/*.groovy' ]
24
- excludes = []
25
- }
16
+ apply plugin : ' cobertura'
17
+ cobertura {
18
+ sourceDirs = sourceSets. main. java. srcDirs
19
+ format = ' html'
20
+ includes = [' **/*.java' , ' **/*.groovy' ]
21
+ excludes = []
22
+ }
26
23
}
You can’t perform that action at this time.
0 commit comments