Skip to content

The library mod behind team resourceful mods and more.

License

Notifications You must be signed in to change notification settings

Team-Resourceful/ResourcefulLib

Repository files navigation

Resourceful Lib


The library mod behind team resourceful mods and more.

Wiki

You can find our wiki here.

License and Availability

The mod is licensed under MIT and is available on Curseforge and Modrinth.

Contributions

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.

For Mod Developers


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:

Forge:

dependencies {
    <--- Other dependencies here --->
    implementation fg.deobf("com.teamresourceful.resourcefullib:resourcefullib-forge-1.21:3.0.10")
}

Fabric:

dependencies {
    <--- Other dependencies here --->
    implementation "com.teamresourceful.resourcefullib:resourcefullib-fabric-1.21:3.0.10"
}

Architectury:

Common build.gradle

dependencies {
    <--- Other dependencies here --->
    modImplementation "com.teamresourceful.resourcefullib:resourcefullib-common-1.21:3.0.10"
}

Fabric build.gradle

dependencies {
    <--- Other dependencies here --->
    modImplementation "com.teamresourceful.resourcefullib:resourcefullib-fabric-1.21:3.0.10"
}

Forge build.gradle

dependencies {
    <--- Other dependencies here --->
    modImplementation "com.teamresourceful.resourcefullib:resourcefullib-forge-1.21:3.0.10"
}

TODO: Add Jar-in-Jar syntax