File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 164164 <trusted-key id =' bcf4173966770193' group =' org.jetbrains' />
165165 <trusted-key id =' b2c4d8b48a99f98a' group =' org.jetbrains.kotlin' />
166166 <trusted-key id =' 66f8e4860bf74983' group =' org.jooq' />
167+ <trusted-key id =' 145d819475314d97' group =' org.json' />
167168 <trusted-key id =' 8db9fa0b0718bbf9' group =' org.jsr107.ri' />
168169 <trusted-key id =' 0315bfb7970a144f' group =' org.jvnet.staxex' />
169170 <trusted-key id =' f1f286fc184b6bda' group =' org.kordamp.gradle' />
Original file line number Diff line number Diff line change 11/**
22 * Configurations for code quality analysis
33 */
4+ import static org.gradle.util.GradleVersion.version
5+
46apply plugin : ' org.kordamp.gradle.jandex'
57apply plugin : ' org.kordamp.gradle.stats'
68apply plugin : ' com.github.spotbugs'
@@ -67,18 +69,18 @@ checkstyle {
6769
6870spotbugs {
6971 effort = ' max'
70- toolVersion = pluginVersions. spotbugs
7172 excludeFilter = file(" ${ rootDir} /config/spotbugs/exclude.xml" )
73+ toolVersion = [version(pluginVersions. spotbugs), version(toolVersion. get())]. max(). version
7274}
7375
7476pmd {
7577 ruleSets = []
76- toolVersion = pluginVersions. pmd
7778 ruleSetConfig = resources. text. fromFile(file(" ${ rootDir} /config/pmd/rulesSets.xml" ))
79+ toolVersion = [version(pluginVersions. pmd), version(toolVersion)]. max(). version
7880}
7981
8082jacoco {
81- toolVersion = pluginVersions. jacoco
83+ toolVersion = [version( pluginVersions. jacoco), version(toolVersion)] . max() . version
8284}
8385
8486jacocoTestReport {
Original file line number Diff line number Diff line change 9696 semanticVersioning : ' 1.1.0' ,
9797 shadow : ' 6.1.0' ,
9898 sonarqube : ' 3.0' ,
99- spotbugs : ' 4.0 .3' ,
99+ spotbugs : ' 4.1 .3' ,
100100 spotbugsPlugin : ' 4.5.1' ,
101101 stats : ' 0.2.2' ,
102102 versions : ' 0.33.0' ,
You can’t perform that action at this time.
0 commit comments