Package com.diffplug.gradle.eclipse
Class ResourceFiltersPlugin
java.lang.Object
com.diffplug.gradle.ProjectPlugin
com.diffplug.gradle.eclipse.ResourceFiltersPlugin
Eclipse projects can have [resource filters](https://help.eclipse.org/neon/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Fconcepts%2Fresourcefilters.htm)
which include or exclude certain files.

This plugin allows you to easily configure these settings.
```groovy
apply plugin: 'com.diffplug.eclipse.resourcefilters'
eclipseResourceFilters {
exclude().folders().name('build')
include().folders().projectRelativePath('main/src/*')
exclude().files().name('*.class').recursive()
}
```
For full details on what filters you can create, see
ResourceFilter.-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.diffplug.gradle.ProjectPlugin
apply, getPlugin, treeDef
-
Constructor Details
-
ResourceFiltersPlugin
public ResourceFiltersPlugin()
-
-
Method Details
-
applyOnce
Description copied from class:ProjectPluginPlugin application, which is guaranteed to execute only once.- Specified by:
applyOncein classProjectPlugin
-