Eclipse has the concept of a plugin_customization.ini that you can use to override the default values of workspace preferences when initializing a new workspace. This is normally used for branded eclipse product builds, but you can also manually specify one in your eclipse.ini with the -plugincustomization <filename> option (see eclipse doc here)
e.g., some examples of useful default override options that I might want to ship with a build
Eclipse has the concept of a
plugin_customization.ini
that you can use to override the default values of workspace preferences when initializing a new workspace. This is normally used for branded eclipse product builds, but you can also manually specify one in your eclipse.ini with the-plugincustomization <filename>
option (see eclipse doc here)e.g., some examples of useful default override options that I might want to ship with a build
You could even use this to ship a different default code formatter (e.g., google-style) by using
org.eclipse.jdt.core.prefs/
settings(feel free to close this off if you'd prefer to keep things simple)