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-ui.git
The following commit(s) were added to refs/heads/master by this push:
new d748f99 use ** pattern in rat exclude rules
d748f99 is described below
commit d748f99ee4c63770bb30a2234ed10fcee3eddb85
Author: Alex Heneveld <[email protected]>
AuthorDate: Wed Apr 1 17:40:29 2020 +0100
use ** pattern in rat exclude rules
seems to be needed in some cases if folder name is different; there might
be a better portable way to do current directory but the things we exclude can
be everywhere.
not sure why the children patterns aren't being picked up but declaring it
at root also seems to work. (the problem happens when we link to brooklyn-ui in
a nested/skinning project.)
---
pom.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 53d1303..cab5d51 100644
--- a/pom.xml
+++ b/pom.xml
@@ -323,11 +323,13 @@
<exclude>**/dist/**</exclude>
<!-- trivial config files, which contain comments so
we can't insert the license header -->
<exclude>**/.babelrc</exclude>
- <exclude>.mvn/jvm.config</exclude>
+ <exclude>**/.mvn/jvm.config</exclude>
<!-- maven cache -->
<exclude>**/.m2/**</exclude>
<!-- travis config file -->
- <exclude>.travis.yml</exclude>
+ <exclude>**/.travis.yml</exclude>
+ <!-- should be excluded by children but isn't always
-->
+ <exclude>**/test/fixtures/brooklyn-api/v1/**</exclude>
</excludes>
</configuration>
</plugin>