This is an automated email from the ASF dual-hosted git repository.
vladimirsitnikov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new 05ea8e41ec [CALCITE-4947] Checkstyle fails on classes generated by
Intellij when using option "build and run [tests] using Intellij IDEA"
05ea8e41ec is described below
commit 05ea8e41ec527e6dde81046dd5b69696bf5bf017
Author: Thomas Rebele <[email protected]>
AuthorDate: Fri Dec 17 17:47:42 2021 +0100
[CALCITE-4947] Checkstyle fails on classes generated by Intellij when using
option "build and run [tests] using Intellij IDEA"
---
build.gradle.kts | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 86be76ef0a..4be15b5a7a 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -319,7 +319,9 @@ override fun execute(context: ComponentMetadataContext) {
"**/parser/**/Token.*",
"**/parser/**/TokenMgrError.*",
"**/org/apache/calcite/runtime/Resources.java",
- "**/parser/**/*ParserTokenManager.*"
+ "**/parser/**/*ParserTokenManager.*",
+ "generated_tests/org/apache/calcite/**/*",
+ "generated/org/apache/calcite/**/*"
)
fun PatternFilterable.excludeJavaCcGenerated() {