event-bus/proc/src/main/java/module-info.java

13 lines
294 B
Java
Raw Normal View History

/**
* Contains an annotation processor for checking for errors related to the
* {@link dev.kske.eventbus.core.Event} annotation from Event Bus.
*
* @author Kai S. K. Engelbart
* @since 1.0.0
*/
2022-01-12 20:10:44 +01:00
module dev.kske.eventbus.proc {
requires java.compiler;
requires dev.kske.eventbus.core;
}