You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2019/11/22 01:30:52 UTC

[kafka] branch 1.0 updated: MINOR: Rat should ignore generated directories (#7729)

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

ijuma pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/1.0 by this push:
     new b6cb6ea  MINOR: Rat should ignore generated directories (#7729)
b6cb6ea is described below

commit b6cb6ea3bdbd1dc7958d27a8575d923567ac6c60
Author: Ismael Juma <is...@juma.me.uk>
AuthorDate: Thu Nov 21 10:51:55 2019 -0800

    MINOR: Rat should ignore generated directories (#7729)
    
    For some reason, PR builds are failing due to the `rat` license
    check even though it should ignore files included in `.gitignore`.
    
    Reviewers: Jason Gustafson <ja...@confluent.io>
---
 build.gradle | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 6956075..c335095 100644
--- a/build.gradle
+++ b/build.gradle
@@ -122,7 +122,8 @@ if (new File('.git').exists()) {
         '**/id_rsa',
         '**/id_rsa.pub',
         'checkstyle/suppressions.xml',
-        'streams/quickstart/java/src/test/resources/projects/basic/goal.txt'
+        'streams/quickstart/java/src/test/resources/projects/basic/goal.txt',
+        '**/generated/**'
     ])
   }
 }