I tried the below code to access the "GreetingResource" using custom extension, but not able to access. sample code:
@BuildStep
void build(BuildProducer<AdditionalBeanBuildItem> additionalBeans) {
additionalBeans.produce(
AdditionalBeanBuildItem.unremovableOf(GreetingResource.class)
);
}