twak's java utils!
Random tools and abstractions created as required. Not a tidy library! Required for some of my other projects. Not all my own work.
Add this to your pom.xml
to use latest snapshot in your project:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.twak</groupId>
<artifactId>jutils</artifactId>
<version>0.0.1</version>
</dependency>
mvn compile install
should install it into your local mvn.
Add this in your root build.gradle
at the end of repositories to use latest snapshot:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.twak:jutils:master-SNAPSHOT'
}