We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a package-info.java class that looks like this:
package-info.java
@MixIn @MenuFolder(id = "leasingfolder", weight = 11) package com.nemesis.platform.module.commerce.core.definition.leasing; import com.nemesis.platform.core.mixin.MixIn; import com.nemesis.platform.core.service.annotations.MenuFolder;
Now I want to find all package-info classes that have the MenuFolder annotation. The MenuFolder annotation is indexed:
package-info
MenuFolder
@Indexed @Documented @IndexAnnotated @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PACKAGE) public @interface MenuFolder { String id() default "{com.nemesis.menufolder.id}"; int weight() default 0; }
However, during compilation I see no index in META-INF/annotations/ is created.
META-INF/annotations/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a
package-info.java
class that looks like this:Now I want to find all
package-info
classes that have theMenuFolder
annotation. TheMenuFolder
annotation is indexed:However, during compilation I see no index in
META-INF/annotations/
is created.The text was updated successfully, but these errors were encountered: