The attribute reference is undefined for the annotation type Component
Hi,
I am not able to find solution for above error. please find my code snippet below
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.osgi.service.component.annotations.ReferenceCardinality;
import org.osgi.service.component.annotations.ReferencePolicy;
@8220494(/* service = ConfigUtil.class, */ immediate = true,
reference = {
@3214626(name = "configutil", bind = "bindAssetDetailsSelector"
unbind = "unbindAssetDetailsSelector", service = DataPowerUrlUtil.class,
policy = ReferencePolicy.DYNAMIC, cardinality = ReferenceCardinality.MULTIPLE
) }
)
using maven-bundle-plugin version 4.2.1, <artifactId>org.osgi.service.component.annotations</artifactId> verion 1.4.0,
R7 annotation
Thanks,
Sai


