AEM 6.1 Sightly: org.apache.sling.scripting.sightly.impl.engine.extension.use.UseRuntimeExtension No use provider could resolve identifier
Hi
I'm just trying to call a simple wcmUsePojo class implementation from an aem component, but while doing so I'm getting below given error:
org.apache.sling.scripting.sightly.impl.engine.extension.use.UseRuntimeExtension No use provider could resolve identifier "myClassName".
The code is very simple and does not contain any complex stuff yet, still its not working. the bundle is active and the pojo class package is also available in exported packages.
The code snipped is as given below:
<div data-sly-use.navigationUtilTest="${'com.dummy.helper.navigationUtilTest'}" data-sly-unwrap>
Dummy Text
</div>