You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2017/11/17 22:30:03 UTC

[32/50] [abbrv] beam git commit: Fix excludes to correctly match the .idea/ directory.

Fix excludes to correctly match the .idea/ directory.

This was working in the past because http://creadur.apache.org/rat/apache-rat-plugin/check-mojo.html#useIdeaDefaultExcludes is true.


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/788d9587
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/788d9587
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/788d9587

Branch: refs/heads/master
Commit: 788d9587c884b6204b07ac170fd3efb51263f72e
Parents: 6067fc9
Author: Luke Cwik <lc...@google.com>
Authored: Thu Nov 9 08:44:19 2017 -0800
Committer: Luke Cwik <lc...@google.com>
Committed: Fri Nov 17 14:27:16 2017 -0800

----------------------------------------------------------------------
 build.gradle | 2 +-
 pom.xml      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/788d9587/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 747354b..a35455e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -214,7 +214,7 @@ rat {
     "sdks/python/apache_beam/portability/api/*pb2*.*",
 
     // .gitignore: Ignore IntelliJ files.
-    "**/idea/**/*",
+    "**/.idea/**/*",
     "**/*.iml",
     "**/*.ipr",
     "**/*.iws",

http://git-wip-us.apache.org/repos/asf/beam/blob/788d9587/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index adfef71..7bf9d66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1657,7 +1657,7 @@
               <exclude>sdks/python/apache_beam/portability/api/*pb2*.*</exclude>
 
               <!-- .gitignore: Ignore IntelliJ files. -->
-              <exclude>**/idea/**/*</exclude>
+              <exclude>**/.idea/**/*</exclude>
               <exclude>**/*.iml</exclude>
               <exclude>**/*.ipr</exclude>
               <exclude>**/*.iws</exclude>