Search Gradle plugins

com.diffplug.gradle.eclipse.resourcefilters

Adds filters to an eclipse project which exclude or include specific resources.

https://github.com/diffplug/goomph

Sources: https://github.com/diffplug/goomph

Using the plugins DSL:

plugins {
  id("com.diffplug.gradle.eclipse.resourcefilters") version "3.44.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug.gradle:goomph:3.44.0")
  }
}

apply(plugin = "com.diffplug.gradle.eclipse.resourcefilters")

Using the plugins DSL:

plugins {
  id "com.diffplug.gradle.eclipse.resourcefilters" version "3.44.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug.gradle:goomph:3.44.0"
  }
}

apply plugin: "com.diffplug.gradle.eclipse.resourcefilters"

Learn how to apply plugins to subprojects