Search Gradle plugins

com.diffplug.gradle.eclipse.excludebuildfolder

Excludes the gradle build folder from Eclipse's resource indexing.

https://github.com/diffplug/goomph

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.diffplug.gradle.eclipse.excludebuildfolder") version "3.42.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.diffplug.gradle:goomph:3.42.2")
      }
    }
    
    apply(plugin = "com.diffplug.gradle.eclipse.excludebuildfolder")
  • Applying plugins to all subprojects .