Unable to see the CA Config in Configuration Editor
We have added wcm-io package to our instance and to the project as a dependency. We have also created a template inside our project under /apps/myproject/templates/ca-config-page with the following jcr:content node:
{"jcr:primaryType":"cq:PageContent","jcr:createdBy":"admin","jcr:created":"Tue Jan 03 2023 17:18:25 GMT-0800","sling:resourceType":"wcm-io/caconfig/editor/components/page/editor"}I created a CA config in the codebase using the @2932483 annotation. Following is the configuration:
package com.myproject.core.caconfig;
import org.apache.sling.caconfig.annotation.Configuration;
import org.apache.sling.caconfig.annotation.Property;
@Configuration(label = "Test configuration", description = "TEst configuration")
public @interface Events {
/**
* @return some value
*/
@Property(label = "Some value", description = "Some Value", order = 1)
String someValue();
}
I created a CA-config page under content/myproject.

However, it does not show the CA-config that I created when I click on the Add button. What am I missing here?
Thanks in advance!