A package of utility classes intended to enhance and simplify my development — You need Java 8+
. You can browse the Javadocs. If you have any questions related to usage, simple open an issue.
<dependency>
<groupId>art.cutils</groupId>
<artifactId>cutils</artifactId>
<version>{version}</version>
</dependency>
- Gradle Groovy
implementation 'art.cutils:cutils:{version}'
- Gradle Kotlin
compile("art.cutils:cutils:{version}")
I accept Pull Requests via GitHub. Here are some guidelines which will make applying PRs easier:
- No tabs! Please use spaces for indentation.
- Respect the code style.
- Create minimal diffs.
- If it will help, disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
- Please, provide JUnit tests for your changes and make sure your changes don't break any existing tests by running
mvn clean test
. - Lastly, open PR to
development
branch and follow this rudimentary convention
This code is under the Apache Licence v2.