by the way, the following worked for me (in `sampl...
# gradle
b
by the way, the following worked for me (in
samples/hello-world
):
Copy code
import org.gradle.plugins.ide.eclipse.model.EclipseJdt
import org.gradle.plugins.ide.eclipse.model.EclipseModel

plugins {
    application
    eclipse
}

afterEvaluate {
    configure<EclipseModel> {
        jdt(closureOf<EclipseJdt> {
        })
    }
}