Customize org.eclipse.jdt.core.prefs with Gradle eclipse plugin

1.1k Views Asked by At

I try to customize some Eclipse preferences for a specific set of projects. More specifically, using gradle eclipse, I want to generate the .settings/org.eclipse.jdt.core.prefs file with some specific entries. For example : org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore

I understand that I have to do something like that, but I still have some difficulties to make it work (and I'm not really familiar with the Gradle Groovy language).

Thank you for any help !

1

There are 1 best solutions below

0
Ealrann On BEST ANSWER

I finally found a working build.gradle :

eclipse {
  jdt {
    file {
      withProperties { properties ->
        // set properties for the file org.eclipse.jdt.core.prefs
        properties['org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation'] = 'ignore'
        properties['org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation'] = 'ignore'
      }
    }
  }
}