The logging source level annotation processor is maintained is a separate project from GlassFish. The maven groupId is org.glassfish.annotations and the artificatId is logging-annotation-processor.

The annotation processor project lives in the logging-annotation-processor subversion repo.

To use the @LogMessageInfo annotation in a module you must update the module's pom.xml file.

To resolve the logging annotation processor add the following to the dependencies section of the pom.xml:

<dependency>
    <groupId>org.glassfish.annotations</groupId>
    <artifactId>logging-annotation-processor</artifactId>
    <optional>true</optional>
</dependency>