This is an automated email from the ASF dual-hosted git repository.
heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git
The following commit(s) were added to refs/heads/master by this push:
new b5d310f RAT exclude the log sample test
b5d310f is described below
commit b5d310ff96bd0ab83dedad235bf4d09a3f264c43
Author: Alex Heneveld <[email protected]>
AuthorDate: Mon Jul 19 10:19:38 2021 +0100
RAT exclude the log sample test
cannot put header on it because then it wouldn't be a representative log
file
---
rest/rest-resources/pom.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/rest/rest-resources/pom.xml b/rest/rest-resources/pom.xml
index 0a0fc67..cae5a6d 100644
--- a/rest/rest-resources/pom.xml
+++ b/rest/rest-resources/pom.xml
@@ -244,6 +244,15 @@
</instructions>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+ <excludes combine.children="append">
+ <exclude>src/test/resources/logbook.log.sample</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>