Is Boot Class Path extension supported in kf framework? If it is supported, how can I configure to set the property to always be true?
I've tried setting org.osgi.supports.bootclasspath.extension property to true but to no avail.
From the extracted code below (taken from FWProps.java, initProperties method), it seems that the property will always be set to false unless it's not the first framework which contradicts with the comment found in the code.
// Only first framework can support bootclasspath extension
// NYI! Improve this in the future
if(getBooleanProperty(Constants.SUPPORTS_BOOTCLASSPATH_EXTENSION) &&
!(getClass().getClassLoader() instanceof URLClassLoader && fwCtx.id == 1))
{
props.put(Constants.SUPPORTS_BOOTCLASSPATH_EXTENSION, FALSE); }