Browse Source

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 <jason@confluent.io>
pull/7790/head
Ismael Juma 5 years ago
parent
commit
a9124097e1
  1. 3
      build.gradle

3
build.gradle

@ -134,7 +134,8 @@ if (file('.git').exists()) { @@ -134,7 +134,8 @@ if (file('.git').exists()) {
'**/id_rsa.pub',
'checkstyle/suppressions.xml',
'streams/quickstart/java/src/test/resources/projects/basic/goal.txt',
'streams/streams-scala/logs/*'
'streams/streams-scala/logs/*',
'**/generated/**'
])
}
}

Loading…
Cancel
Save