The library mod behind team resourceful mods and more.
You can find our wiki here.
The mod is licensed under MIT and is available on Curseforge and Modrinth.
If you would like to contribute to the mod feel free to submit a PR.
TODO: Add more info about importing the project in IntelliJ and any additional setup required.
Be sure to add our maven to your build.gradle
:
repositories {
maven { url = "https://maven.resourcefulbees.com/repository/maven-public/" }
<--- other repositories here --->
}
You can then add our mod as a dependency:
dependencies {
<--- Other dependencies here --->
implementation fg.deobf("com.teamresourceful.resourcefullib:resourcefullib-forge-1.21.3:3.3.0")
}
dependencies {
<--- Other dependencies here --->
implementation "com.teamresourceful.resourcefullib:resourcefullib-fabric-1.21.3:3.3.0"
}
dependencies {
<--- Other dependencies here --->
modImplementation "com.teamresourceful.resourcefullib:resourcefullib-common-1.21.3:3.3.0"
}
dependencies {
<--- Other dependencies here --->
modImplementation "com.teamresourceful.resourcefullib:resourcefullib-fabric-1.21.3:3.3.0"
}
dependencies {
<--- Other dependencies here --->
modImplementation "com.teamresourceful.resourcefullib:resourcefullib-forge-1.21.3:3.3.0"
}
TODO: Add Jar-in-Jar syntax