A utility library for Java 8, provided by Mica Technologies.
- micautils: [Main module containing Mica Utils for Java 8+]
- micautils_manifold: [Secondary module containing Mica Utils for Java 8+ with Manifold support]
Most users will only need the main module, micautils
. However, if you wish to use the
module with Manifold support, you will need to use the micautils_manifold
module.
- Java 8 or higher
To include micautils
modules in your Maven project, first add the following repository to
your pom.xml
file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
For additional details, or information on how to install the library with other build tools, such as Gradle or sbt, please see the [JitPack](https://jitpack.io/p/Mica-Technologies/micautils_j8/ page.
To use the main utility module, add the following dependency:
<dependency>
<groupId>com.github.Mica-Technologies.micautils_j8</groupId>
<artifactId>micautils</artifactId>
<version>$TagVersion$</version>
</dependency>
Replace $TagVersion$
with the desired version tag, e.g., v1.0.0
or v1.0.0-pre1
.
If you wish to use the module with Manifold support, add this dependency:
<dependency>
<groupId>com.github.Mica-Technologies.micautils_j8</groupId>
<artifactId>micautils_manifold</artifactId>
<version>$TagVersion$</version>
</dependency>
Replace $TagVersion$
with the desired version tag, e.g., v1.0.0
or v1.0.0-pre1
.
This project is licensed under the MIT License - see the LICENSE file for details.
Thanks to JitPack for providing a platform to easily distribute this library.
A special shoutout to IntelliJ/JetBrains for providing open-source licensing for their products, enhancing the development experience of this project.