Skip to content

Commit

Permalink
GP-0: Excluding nested eclipse project files from gradle 'ip' task
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed Jan 12, 2024
1 parent a299648 commit b072c49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gradle/support/ip.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ def Map<String, List<String>> getIpForModule(Project p) {
exclude "**/build/**";
exclude "certification.manifest"
exclude "certification.local.manifest"
exclude ".project"
exclude ".classpath"
exclude ".pydevproject"
exclude "**/.project"
exclude "**/.classpath"
exclude "**/.pydevproject"
exclude "Module.manifest"
exclude "build.gradle"
exclude "buildNatives.gradle"
Expand Down

0 comments on commit b072c49

Please sign in to comment.