Helios is a core library that improves upon several shortcomings of the Java core libraries.
- Helios is unstable, and as such, is subject to change at any time.
- The APIs are not designed with performance in mind, and as such, should not be used in performance-critical code.
<repository>
<id>sparky983</id>
<url>https://repo.sparky983.me/releases</url>
</repository>
<dependency>
<groupId>me.sparky983</groupId>
<artifactId>helios</artifactId>
<version>0.1.0</version>
</dependency>
repositories {
maven { url 'https://repo.sparky983.me/releases' }
}
dependencies {
implementation 'me.sparky983:helios:0.1.0'
}
repositories {
maven("https://repo.sparky983.me/releases")
}
dependencies {
implementation("me.sparky983:helios:0.1.0")
}