Rename event-bus module to event-bus-core, add event-bus-ap module

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.
This commit is contained in:
2021-02-09 09:52:26 +01:00
parent 9701e862df
commit fd255d65cc
17 changed files with 63 additions and 48 deletions

View File

@ -1,12 +1,12 @@
/**
* Contains the public API and implementation of the event bus library.
* Contains the public API and implementation of the Event Bus library.
*
* @author Kai S. K. Engelbart
* @since 0.0.3
* @see dev.kske.eventbus.Event
* @see dev.kske.eventbus.EventBus
* @see dev.kske.eventbus.core.Event
* @see dev.kske.eventbus.core.EventBus
*/
module dev.kske.eventbus {
module dev.kske.eventbus.core {
exports dev.kske.eventbus;
exports dev.kske.eventbus.core;
}