Java library with general purpose utility classes.
A collection of Java classes not related to any domain or application, providing useful tools currently missing from the JDK "toolbox".
The library can be used in any Java project running on JVM 17 or later. It has no run-time dependencies besides existing classes and interfaces in JDK 17.
The package is available from the Maven Central Repository.
Include in a pom.xml file like this:
<dependencies>
<dependency>
<groupId>io.github.torand</groupId>
<artifactId>java-commons</artifactId>
<version>1.3.0</version>
</dependency>
</dependencies>Include in a build.gradle file like this:
dependencies {
implementation 'io.github.torand:java-commons:1.3.0'
}- Fork it (https://github.com/torand/java-commons/fork)
- Create your feature branch (git checkout -b feature/fooBar)
- Commit your changes (git commit -am 'Add some fooBar')
- Push to the branch (git push origin feature/fooBar)
- Create a new Pull Request
This project is licensed under the Apache-2.0 License.