A java library with many useful functions and classes.
The idea is to put similar classes and utils into one subpackage category like network
or collections
.
When there are enough utils in one category, they will be moved into a separate module.
I will keep the package structure, so you only have to add a new module to your project.
If you don't want to add new modules, you can use the core
module which contains all main
utils even if they are split at some point.
To use commons
in your project, you have the following options:
repositories {
mavenCentral()
}
dependencies {
implementation "net.lenni0451.commons:core:x.x.x"
}
Check my maven server for the latest version.
Or the snapshot server for the latest snapshot version.
<dependency>
<groupId>net.lenni0451.commons</groupId>
<artifactId>all</artifactId>
<version>x.x.x</version>
</dependency>
Check my maven server for the latest version.
Or the snapshot server for the latest snapshot version.
To add commons
as a jar library, you can download the jar file from my Jenkins Server.