From b072c4953b97710078286cbead503146ebcee59c Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Fri, 12 Jan 2024 12:25:46 -0500 Subject: [PATCH] GP-0: Excluding nested eclipse project files from gradle 'ip' task --- gradle/support/ip.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle/support/ip.gradle b/gradle/support/ip.gradle index 010d77592f8..e8effae19c0 100644 --- a/gradle/support/ip.gradle +++ b/gradle/support/ip.gradle @@ -122,9 +122,9 @@ def Map> 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"