Skip to content

Commit 1ee6f14

Browse files
committed
Formatting.
No functional change.
1 parent eee3be8 commit 1ee6f14

File tree

1 file changed

+18
-21
lines changed

1 file changed

+18
-21
lines changed

gradle/check.gradle

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
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+
}
87

9-
// FindBugs
10-
apply plugin: 'findbugs'
11-
findbugs {
12-
ignoreFailures = true
13-
}
8+
apply plugin: 'findbugs'
9+
findbugs {
10+
ignoreFailures = true
11+
}
1412

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 }
1815

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+
}
2623
}

0 commit comments

Comments
 (0)