Is it possible to change the Eclipse branding without modifying/building from source? Like:

  1. Changing splash screen
  2. Changing launcher/exe name and icon
  3. Changing about box
  4. Change application window title

On an Eclipse application downloaded from the eclipse website.

有帮助吗?

解决方案

That kind of branding is usually specified by a branding plugin, which is often the same plugin that contains the product definition (in the plugin.xml). Ex: *eclipse/plugins/org.eclipse.platform_3.8.0.v201110251800* contains the org.eclipse.platform.ide product.

Branding plugins are often deployed in the directory format (as opposed to jars), which would allow you to modify some of the files in your installation ... as long as the plugin is not signed.

The correct way to do it would be to create your own product and your own branding plugin and then build the product again ... but you would have to figure out what it takes to launch the application you are using.

其他提示

I think you have to modify the code, the splash screen is the only thing that might be possible to change without changing the source code.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top