com.diffplug.eclipse.excludebuildfolder
Owner: Ned Twigg
Excludes the gradle build folder from Eclipse''s resource indexing.
https://github.com/diffplug/goomph
Sources: https://github.com/diffplug/goomph.git
Version 3.21.0
3.21.0
Created 26 January 2020.
Excludes the gradle build folder from Eclipse''s resource indexing.
Using the plugins DSL:
plugins {
id("com.diffplug.eclipse.excludebuildfolder") version "3.21.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.diffplug.gradle:goomph:3.21.0")
}
}
apply(plugin = "com.diffplug.eclipse.excludebuildfolder")
Using the plugins DSL:
plugins {
id "com.diffplug.eclipse.excludebuildfolder" version "3.21.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.diffplug.gradle:goomph:3.21.0"
}
}
apply plugin: "com.diffplug.eclipse.excludebuildfolder"