Hi,
Through gradle idea plugin I can successfully exclude a directory in a module(parent->child-module.iml file), but I do not know how to exclude a file or directory from {parent->child-module.main.iml} file. Intellij generates iml files for modules and source roots, not sure how to exclude file/directory from module.main.iml file.
Ex:
Project Structure
Parent-Module
child-module1
child-module2
I see iml files are generated for
child-module1.iml
child-module1.main.iml
child-module1.test.iml
I was able to successfully exclude a file/folder from child-module1.iml by following the code mentioned in http://sorcersoft.org/project/site/gradle/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.html , not sure how to exclude within “child-module1.main.iml” file.
Thanks,
Muhil