You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/01/22 00:57:25 UTC

[royale-asjs] branch develop updated: rat-check: do not checkt RAT on generated compilations in bin folders (like we do in target) since people with IDEs will do compilations in that folders

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

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 943b340  rat-check: do not checkt RAT on generated compilations in bin folders (like we do in target) since people with IDEs will do compilations in that folders
943b340 is described below

commit 943b340b22529f863f7a88984f6aea9808c61cfa
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Wed Jan 22 01:57:16 2020 +0100

    rat-check: do not checkt RAT on generated compilations in bin folders (like we do in target) since people with IDEs will do compilations in that folders
---
 pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/pom.xml b/pom.xml
index 43ed1cf..a141356 100644
--- a/pom.xml
+++ b/pom.xml
@@ -290,6 +290,11 @@
                 target directories. We don't want that.
             -->
             <exclude>**/target/**</exclude>
+            <!-- 
+                Same case for generated compilations of examples or libraries
+                done with IDEs that instead of target use bin.
+            -->
+            <exclude>**/bin/**</exclude>
 
             <exclude>**/src/test/royale/out/**</exclude>
             <exclude>lib/external/*.html</exclude>