diff --git a/pom.xml b/pom.xml index 4078117..116c3c6 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ dev.kske event-bus - 0.0.2 + 0.0.3 Event Bus An event handling framework for Java utilizing annotations. @@ -45,9 +45,21 @@ + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + + org.apache.maven.plugins maven-source-plugin @@ -72,6 +84,7 @@ + diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java new file mode 100644 index 0000000..8e10850 --- /dev/null +++ b/src/main/java/module-info.java @@ -0,0 +1,12 @@ +/** + * 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 + */ +module dev.kske.eventbus { + + exports dev.kske.eventbus; +}