Skip to content
IchHabeHunger54 edited this page Mar 27, 2023 · 2 revisions

Welcome to the EasyDatagenLib wiki! This is where you will find guides for using EasyDatagenLib.

Setup

To include EasyDatagenLib in your project, add the following lines to your build.gradle:

repositories {
    //other repositories here
    maven {
        name = 'Minecraftschurli Maven'
        url = 'https://minecraftschurli.ddns.net/repository/maven-public/'
        content {
            includeGroup 'com.github.minecraftschurlimods'
        }
    }
}
//...
dependencies { //replace version numbers where needed
    include fg.deobf('com.github.minecraftschurlimods:easydatagenlib:1.19-1.0-SNAPSHOT') {
        jarJar.ranged(it, '[1.19-1.0-SNAPSHOT,)')
    }
}
Clone this wiki locally