[jmeter] branch master updated: Correct typo in email credits

2021-08-24 Thread fschumacher
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 a0292c8  Correct typo in email credits
a0292c8 is described below

commit a0292c87dac41f42e04b6d25e537571407f2221b
Author: Felix Schumacher 
AuthorDate: Tue Aug 24 09:35:46 2021 +0200

Correct typo in email credits
---
 xdocs/changes.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/xdocs/changes.xml b/xdocs/changes.xml
index 89bd60a..08f7e38 100644
--- a/xdocs/changes.xml
+++ b/xdocs/changes.xml
@@ -133,9 +133,9 @@ Summary
 Non-functional changes
 
   65128643Add missing documentation about Same 
user on each iteration for Thread Groups. Contributed by njkuzas.
-  648Updated xmlgraphics-commons to 2.6 (from 2.3). Contributed 
by Stefan Seide (stefan @ trilobyte.se.de)
-  655667Updated x-stream to 1.4.17 (from 1.4.15). 
Contributed by Stefan Seide (stefan @ trilobyte.se.de)
-  656668Updated json-smart to 2.4.7 (from 2.3), 
accessors-smart to 2.4.7 (from 1.2) and asm 9.1 (from 9.0). Contributed by 
Stefan Seide (stefan @ trilobyte.se.de)
+  648Updated xmlgraphics-commons to 2.6 (from 2.3). Contributed 
by Stefan Seide (stefan at trilobyte-se.de)
+  655667Updated x-stream to 1.4.17 (from 1.4.15). 
Contributed by Stefan Seide (stefan at trilobyte-se.de)
+  656668Updated json-smart to 2.4.7 (from 2.3), 
accessors-smart to 2.4.7 (from 1.2) and asm 9.1 (from 9.0). Contributed by 
Stefan Seide (stefan at trilobyte-se.de)
   64831Log truststore entries in debug level for logger 
org.apache.jmeter.util.keystore.JmeterKeyStore
   65232Hide splash screen when an error is displayed because 
the test plan could not be parsed.
   Updated Groovy to 3.0.8 (from 3.0.7).


[jmeter] branch master updated: Correct parameter for calling spotbugs in description

2021-08-24 Thread fschumacher
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 
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().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