Skip to content

Latest commit

 

History

History
69 lines (55 loc) · 1.63 KB

README.md

File metadata and controls

69 lines (55 loc) · 1.63 KB

Resourceful Lib Kotlin


The extensions to Resourceful Lib for Kotlin.

License and Availability

The mod is licensed under MIT, this is an extension of Resourceful Lib and is available only on the maven.

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.teamresourceful.com/repository/maven-public/" }
    <--- other repositories here --->
}

You can then add our mod as a dependency:

NeoForge:

dependencies {
    <--- Other dependencies here --->
    implementation fg.deobf("com.teamresourceful.resourcefullibkt:resourcefullibkt-neoforge-1.21:2.0.2")
}

Fabric:

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

Architectury:

Common build.gradle

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

Fabric build.gradle

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

NeoForge build.gradle

dependencies {
    <--- Other dependencies here --->
    modImplementation "com.teamresourceful.resourcefullibkt:resourcefullibkt-neoforge-1.21:2.0.2"
}

TODO: Add Jar-in-Jar syntax