This is an automated email from the ASF dual-hosted git repository.
vladimirsitnikov 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 90ddca3 Do not execute SpotBugs by default
90ddca3 is described below
commit 90ddca3b76e940dbb91e4bd281fffe476c8e4a7d
Author: Vladimir Sitnikov <sitnikov.vladimir@gmail.com>
AuthorDate: Thu Aug 20 21:05:31 2020 +0300
Do not execute SpotBugs by default
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 4c7b329..ecf804f 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -146,7 +146,7 @@ val jacocoEnabled by extra {
}
// Do not enable spotbugs by default. Execute it only when -Pspotbugs is present
-val enableSpotBugs = props.bool("spotbugs", default = true)
+val enableSpotBugs = props.bool("spotbugs", default = false)
val ignoreSpotBugsFailures by props()
val skipCheckstyle by props()
val skipAutostyle by props()
|