You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/02/13 17:09:26 UTC

[commons-numbers] branch master updated: Exclude examples module from rat check using wildcards in .gitignore.

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

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/master by this push:
     new 52877dd  Exclude examples module from rat check using wildcards in .gitignore.
52877dd is described below

commit 52877dd2694418d1f59fdfea6a2d7b2e3b433ff5
Author: aherbert <ah...@apache.org>
AuthorDate: Thu Feb 13 17:09:22 2020 +0000

    Exclude examples module from rat check using wildcards in .gitignore.
    
    Remove the rat exclusions from the pom that are duplicates of those in
    .gitignore.
---
 .gitignore | 12 ++++++------
 pom.xml    |  6 ------
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/.gitignore b/.gitignore
index cd2f710..f4336c4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,13 +1,13 @@
-.classpath
-.project
-.settings
-.checkstyle
+**/.classpath
+**/.project
+**/.settings/
+**/.checkstyle
 bin
-target
+**/target/**
 /build
 /lib
 site-content
-.ekstazi
+**/.ekstazi/
 *.class
 *.iml
 *.ipr
diff --git a/pom.xml b/pom.xml
index 55885c6..e0665f5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -323,9 +323,6 @@
           gets consistent output.
         -->
           <excludes combine.children="append">
-            <!-- version 0.8 of apache-rat-plugin does not exclude properly
-                 some default development tools files (see RAT-126) -->
-            <exclude>.ekstazi/**</exclude>
             <exclude>src/test/resources/data/**</exclude>
             <exclude>dist-archive/**</exclude>
           </excludes>
@@ -374,9 +371,6 @@
         <configuration>
          <!--  Should agree with apache-rat-plugin config under <build> -->
           <excludes combine.children="append">
-            <!-- version 0.8 of apache-rat-plugin does not exclude properly
-                 some default development tools files (see RAT-126) -->
-            <exclude>.ekstazi/**</exclude>
             <exclude>src/test/resources/data/**</exclude>
             <exclude>dist-archive/**</exclude>
           </excludes>