This commit is contained in:
2024-04-08 07:21:41 +02:00
parent 22a7d78152
commit 250b36f9ee
8 changed files with 218 additions and 37 deletions

View File

@@ -12,9 +12,18 @@ repositories {
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven {
name 'Xander Maven'
url 'https://maven.isxander.dev/releases'
}
maven {
name 'TerraformersMC'
url 'https://maven.terraformersmc.com/releases'
}
}
dependencies {
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
@@ -22,6 +31,8 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "dev.isxander.yacl:yet-another-config-lib-fabric:${project.yacl_version}"
modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}"
}
processResources {