You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ku...@apache.org on 2019/08/09 11:05:51 UTC

[flink] branch master updated: [hotfix] Fix the style check failure of flink-sql-parser when enabling docs-and-source profile

This is an automated email from the ASF dual-hosted git repository.

kurt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new a2005c0  [hotfix] Fix the style check failure of flink-sql-parser when enabling docs-and-source profile
a2005c0 is described below

commit a2005c0e602842fc97c6c586bd69b1a77128d31b
Author: Kurt Young <ku...@apache.org>
AuthorDate: Fri Aug 9 19:03:53 2019 +0800

    [hotfix] Fix the style check failure of flink-sql-parser when enabling docs-and-source profile
---
 tools/maven/suppressions.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/maven/suppressions.xml b/tools/maven/suppressions.xml
index caa1273..7635914 100644
--- a/tools/maven/suppressions.xml
+++ b/tools/maven/suppressions.xml
@@ -57,4 +57,8 @@ under the License.
 		<suppress
 			files="org[\\/]apache[\\/]hadoop[\\/]util[\\/]VersionInfo.java"
 			checks=".*"/>
+		<!-- Classes generated by sql parser -->
+		<suppress
+			files="generated-sources[\\/]org[\\/]apache[\\/]flink[\\/]sql[\\/]parser[\\/]impl[\\/].*..java"
+			checks=".*"/>
 </suppressions>