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 !