You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tubemq.apache.org by go...@apache.org on 2020/07/23 08:38:10 UTC

[incubator-tubemq] branch master updated: [TUBEMQ-299] Fix RAT check warnnings (#220)

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

gosonzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tubemq.git


The following commit(s) were added to refs/heads/master by this push:
     new e84e16f  [TUBEMQ-299] Fix RAT check warnnings (#220)
e84e16f is described below

commit e84e16f9c67bedfd918fae325b62c34568ba64d1
Author: Guangxu Cheng <gx...@apache.org>
AuthorDate: Thu Jul 23 16:38:01 2020 +0800

    [TUBEMQ-299] Fix RAT check warnnings (#220)
---
 tubemq-connectors/pom.xml | 11 +++++++++++
 tubemq-docker/pom.xml     | 12 ++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/tubemq-connectors/pom.xml b/tubemq-connectors/pom.xml
index dec8438..b8693f7 100644
--- a/tubemq-connectors/pom.xml
+++ b/tubemq-connectors/pom.xml
@@ -61,6 +61,17 @@
                     <showWarnings>true</showWarnings>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/README.md</exclude>
+                        <exclude>**/target/**</exclude>
+                        <exclude>**/*.iml</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>
\ No newline at end of file
diff --git a/tubemq-docker/pom.xml b/tubemq-docker/pom.xml
index d0bbc9f..da0c8dd 100644
--- a/tubemq-docker/pom.xml
+++ b/tubemq-docker/pom.xml
@@ -56,6 +56,18 @@
                     <showWarnings>true</showWarnings>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/README.md</exclude>
+                        <exclude>**/target/**</exclude>
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/.helmignore</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>
\ No newline at end of file