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 98aa112 Ignore bin/*.xml files from code style verification as they
are produced by batch tests
98aa112 is described below
commit 98aa112bef19cd7b44903c52fb42c05ac1cf8e69
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Sat Dec 28 20:51:23 2019 +0300
Ignore bin/*.xml files from code style verification as they are produced by
batch tests
---
build.gradle.kts | 3 +++
1 file changed, 3 insertions(+)
diff --git a/build.gradle.kts b/build.gradle.kts
index c8a7e7c..090b400 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -282,6 +282,9 @@ allprojects {
if (project == rootProject) {
exclude(rootDir.resolve(".ratignore").readLines())
exclude("gradlew*")
+ // Generated by batch tests. It ignores log4j2.xml,
however it is not that important
+ // The configuration will be removed when Autostyle
will use .gitignore
+ exclude("bin/*.xml")
} else {
exclude("bin/**")
}