We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cc3d44 commit c32e686Copy full SHA for c32e686
1 file changed
build.gradle
@@ -99,6 +99,16 @@ test {
99
useJUnitPlatform()
100
}
101
102
+sonar {
103
+ properties {
104
+ // Ignore sonar warnings globally
105
+ property 'sonar.issue.ignore.multicriteria', 'S1948'
106
+ // Ignore serialization waring as it's only relevant for RMI which is not used
107
+ property 'sonar.issue.ignore.multicriteria.S1948.ruleKey', 'java:S1948'
108
+ property 'sonar.issue.ignore.multicriteria.S1948.resourceKey', '**/*.java'
109
+ }
110
+}
111
+
112
// Add resources directory because intellij test framework checks there for test resources (instead of build/resources)
113
sourceSets {
114
test.output.resourcesDir = "build/classes/java/resources"
0 commit comments