This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 174fd02 Exclude a few files from apache-rat:check (#2035)
174fd02 is described below
commit 174fd02f972e2db19e67874781a503cb264b0099
Author: Sijie Guo <[email protected]>
AuthorDate: Tue Jun 26 16:09:55 2018 -0700
Exclude a few files from apache-rat:check (#2035)
*Motivation*
Apache-rat check is failing
*Changes*
- Exclude two BSD licensed files
- Exclude files related to certs used for testing
---
pom.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/pom.xml b/pom.xml
index 6ed259e..37ed8f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1028,6 +1028,10 @@ flexible messaging model and an intuitive client
API.</description>
<exclude>src/main/java/org/apache/pulsar/broker/service/schema/proto/SchemaRegistryFormat.java</exclude>
<exclude>bin/proto/MLDataFormats_pb2.py</exclude>
+ <!-- These files are BSD licensed files -->
+
<exclude>src/main/java/org/apache/pulsar/common/util/protobuf/ByteBufCodedInputStream.java</exclude>
+
<exclude>src/main/java/org/apache/pulsar/common/util/protobuf/ByteBufCodedOutputStream.java</exclude>
+
<!-- This is generated during maven build -->
<exclude>dependency-reduced-pom.xml</exclude>
@@ -1053,6 +1057,8 @@ flexible messaging model and an intuitive client
API.</description>
<exclude>**/*.htpasswd</exclude>
<exclude>src/test/resources/athenz.conf.test</exclude>
<exclude>deployment/terraform-ansible/templates/myid</exclude>
+ <exclude>certificate-authority/index.txt</exclude>
+ <exclude>certificate-authority/README.md</exclude>
<!-- Python requirements files -->
<exclude>**/requirements.txt</exclude>