This repository was archived by the owner on Feb 23, 2026. It is now read-only.
π Aether Events v1.0.0 - Initial Release
Aether Events is a powerful asynchronous event system for the JVM.
It provides a modular and flexible way to handle events with support for:
- β EventBus & Listeners
- β Asynchronous & Synchronous Events
- β Event Pipelines for filtering and prioritization
- β Cancellable Events
- β Thread Safety for multi-threaded environments
π¦ Installation
Maven
<repository>
<id>splatgames.de</id>
<url>https://libraries.splatgames.de/</url>
</repository>
<dependency>
<groupId>de.splatgames.aether</groupId>
<artifactId>aether-events</artifactId>
<version>1.0.0</version>
</dependency>Gradle
repositories {
maven {
url 'https://libraries.splatgames.de/'
}
}
dependencies {
implementation 'de.splatgames.aether:aether-events:1.0.0'
}π― Features in v1.0.0
β
EventBus for centralized event management
β
Event Pipelines for advanced event processing
β
Multi-threading support for asynchronous event execution
β
Cancellable events with event.setCancelled(true);
β
Simple listener registration with @subscribe
π Changelog
New Features:
- π Initial stable release with core functionality
- ποΈ Basic EventBus, EventPipelines & Listeners implemented
π License
This project is licensed under the MIT License.