How to change eclipse plugin's default parent-first classloader policy to child-first classloader po
- by deepthinker121
Hi All,
I want to change the behavior of eclipse's parent-first classloader policy to child-first classloader policy.
The scenario would be :
Plugin A has class C in dependent external jar.
When the classloader of the jar looks for "META-INF" folder - it should find the META-INF folder of the jar and not the one found by its parent classloader - that is the plugin A's META-INF folder.
So I want to change the classloader policy to 'child-first' rather than 'parent-first'
Is it possible to do this by changing the plugin A's Manifest or plugin.xml?