Skip to content

Getting Started

Bento Util is a general utility library that other Bento modules tend to make use of. It has a few things here you might find useful yourself!

  1. Include my maven in the repositories block of your build file:

    build.gradle
    repositories {
    maven {
    name "Chai's Maven"
    url "https://codeberg.org/api/packages/chai/maven"
    }
    }
  2. Declare the dependency in your dependencies block:

    build.gradle
    dependencies {
    modImplementation "dev.chailotl:bento-util:${project.bento_util_version}"
    }
  3. Add the version you want to use in your gradle.properties file:

    gradle.properties
    bento_util_version=0.1.0+1.21