How to prevent eclipse-integration-gradle plugin from putting subprojects among filteredResources? -


i using eclipse ide gradle project, eclipse-integration-gradle plugin.

when choosing "refresh all" menu item, plugin invokes gradle :eclipse task refresh .classpath , .project files. after gradle terminates, plugin seems automatically add gradle subprojects filteredresources in .project (possibly overwriting other filteredresources generated gradle before). such as:

<filteredresources>     <filter>         <id>1435224149113</id>         <name></name>         <type>26</type>         <matcher>             <id>org.eclipse.ui.ide.orfiltermatcher</id>             <arguments>                 <matcher>                     <id>org.eclipse.ui.ide.multifilter</id>                     <arguments>1.0-projectrelativepath-equals-true-false-myprojectname</arguments>                 </matcher>             </arguments>         </matcher>     </filter> </filteredresources> 

i not want reasons. possible turn behavior off? or work-around, @ least?

that option can disabled when import project.

enter image description here


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -