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!
Quick Start
Section titled “Quick Start”-
Include my maven in the
repositoriesblock of your build file:build.gradle repositories {maven {name "Chai's Maven"url "https://codeberg.org/api/packages/chai/maven"}}build.gradle.kts repositories {maven("https://codeberg.org/api/packages/chai/maven") {name = "Chai's Maven"}} -
Declare the dependency in your
dependenciesblock:build.gradle dependencies {modImplementation "dev.chailotl:bento-util:${project.bento_util_version}"} -
Add the version you want to use in your
gradle.propertiesfile:gradle.properties bento_util_version=0.1.0+1.21