Fuzss / modresources

A Github repo for hosting web content needed by my mods.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mod Resources

A Github repository for hosting web content needed by @heyitsfuzs mods.

./gradle

Contains Gradle build scripts applied to all mod projects that are using a multi-loader development setup.

./maven

A Maven repository where some @heyitsfuzs mods with a public api are published. Resources found in this directory can be accessed from a Gradle buildscript as shown below.

repositories {
    maven {
        name = "Fuzs Mod Resources"
        url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
    }
}

dependencies {
    // Common
    api "fuzs.<modId>:<modId>-common:<modVersion>"
    // Fabric
    modApi "fuzs.<modId>:<modId>-fabric:<modVersion>"
    // NeoForge
    api "fuzs.<modId>:<modId>-neoforge:<modVersion>"
    // Forge
    api fg.deobf("fuzs.<modId>:<modId>-forge:<modVersion>")
}

./pages

Content for @heyitsfuzs mod pages found on CurseForge and Modrinth. The full pages are generated from individual files using a private tool.

./update

Mod files for NeoForge's / Forge's update checker system. The files are automatically refreshed locally from Gradle buildscripts whenever a new NeoForge / Forge release is published.

About

A Github repo for hosting web content needed by my mods.


Languages

Language:Shell 100.0%