event-bus is now a parent project containing the two modules event-bus-core (the previous event-bus) and event-bus-ap (annotation processor). The version of the parent project (and thus that of the modules) has been bumped to 1.0.0, as this change breaks compatibility with previous versions due to the different artifact, module and package names.
13 lines
275 B
Java
13 lines
275 B
Java
/**
|
|
* Contains the public API and implementation of the Event Bus library.
|
|
*
|
|
* @author Kai S. K. Engelbart
|
|
* @since 0.0.3
|
|
* @see dev.kske.eventbus.core.Event
|
|
* @see dev.kske.eventbus.core.EventBus
|
|
*/
|
|
module dev.kske.eventbus.core {
|
|
|
|
exports dev.kske.eventbus.core;
|
|
}
|