MeGysssTaa / kantanj

A handy general-purpose Java library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kantanj

簡単 [kantan] (Japanese "simple") + J ("Java") = "Simple Java"

A simple library consisting of various handy utilities, types and wrappers for other libraries to simplify and boost up the development of Java applications of different kinds. Created because I'm bored of copy-pasting all the same code from project to project each time I work on something new. Published because why not.

Hope this will be useful to someone.

Also hope a complete documentation will be published one day...

For some partial documentation, tutorials and explanation see kantanj Wiki

Usage (Maven)

<repositories>
    <repository>
        <id>reflex.public</id>
        <name>Public Reflex Repository</name>
        <url>https://archiva.reflex.rip/repository/public/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>me.darksidecode.kantanj</groupId>
        <artifactId>kantanj</artifactId>
        <version>1.1.0</version>
    </dependency>
</dependencies>

Usage (Gradle)

repositories {
    maven {
        name 'Public Reflex Repository'
        url 'https://archiva.reflex.rip/repository/public/'
    }
}

dependencies {
    implementation group: 'me.darksidecode.kantanj', name: 'kantanj', version: '1.1.0'
}

Building (Maven)

  1. Clone or download this repository, cd into it.
  2. Run mvn clean install to install it into your local Maven repository (if you need to).
  3. Profit!
git clone https://github.com/MeGysssTaa/kantanj
cd kantanj

License

Apache License 2.0