This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new e2814b4 Correct parameter for calling spotbugs in description
e2814b4 is described below
commit e2814b47fd7a44ed78158598df9ddafd1e17b40b
Author: Felix Schumacher <[email protected]>
AuthorDate: Tue Aug 24 09:25:57 2021 +0200
Correct parameter for calling spotbugs in description
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index e1467b9..d4af830 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -575,7 +575,7 @@ allprojects {
withType<SpotBugsTask>().configureEach {
group = LifecycleBasePlugin.VERIFICATION_GROUP
if (enableSpotBugs) {
- description = "$description (skipped by default, to enable
it add -Dspotbugs)"
+ description = "$description (skipped by default, to enable
it add -Pspotbugs)"
}
reports {
// xml goes for SonarQube, so we always create it just in
case