/LilyLib

I needed my own library mod so I could things a little easier in the future. This is it.

Primary LanguageJavaGNU Lesser General Public License v2.1LGPL-2.1

LilyLib

I've started needing to reuse some of my modding code, so now I need a library I guess.

License

The library is license GNU-LGPL, so feel free to use it and package it with a mod. Though I have no idea why anyone would want to.

Dependency

Add to your build.gradle

repositories {
    maven {
        url "https://jitpack.io"
    }
}
dependencies {
    modImplementation "com.github.provismet:lilylib:${project.lilylib_version}"
    include "com.github.provismet:lilylib:${project.lilylib_version}"
}

Where ${project.lilylib_version} can either be replaced with a release tag, or you can define a lilylib_version parameter in your gradle.properties file.

Check the Jitpack.io page for working builds.