Skip to content

Latest commit

 

History

History
executable file
·
42 lines (33 loc) · 957 Bytes

File metadata and controls

executable file
·
42 lines (33 loc) · 957 Bytes

Nexus Repository

Tiny Config

A very basic configuration API that is used by Proton.

How to use:

Import as a dependency (Gradle):

Gradle Groovy:

repositories {
    maven { url = "https://nexus.dyonb.nl/repository/proton/" }
}

// ...

dependencies {
    implementation("io.github.protonmc:tiny_config:version")
}

Gradle Kotlin:

repositories {
    maven {
        setUrl("https://nexus.dyonb.nl/repository/proton/")
    }
}

// ...

dependencies {
    implementation("io.github.protonmc", "tiny_config", "version")
}

If you're using this for a Minecraft FabricMC mod you may also want to insert

include("io.github.protonmc:tiny_config:version")

in the dependencies block.

Join this Discord if you need any help.