aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorinyourwalls <inyourwalls@tutanota.com>2024-02-19 17:46:42 -0500
committerinyourwalls <inyourwalls@tutanota.com>2024-02-19 17:46:42 -0500
commit327be47178bebb323f618c6a6d36a12d3b15dbe4 (patch)
tree3332675ceb9d438428bdc2b89a3f05e95c057cf2 /build.gradle.kts
parentfc6f881f9ca78c9f81e5a40291f9bd292789219a (diff)
create config class, start working on config screen
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts11
1 files changed, 8 insertions, 3 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index 34112f6..4404f53 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -6,14 +6,19 @@ plugins {
version = "0.1.0"
group = "net.inyourwalls"
+repositories {
+ maven("https://maven.terraformersmc.com/")
+}
+
dependencies {
- val minecraftVersion = "1.20.4"
- val yarnBuild = "3"
- val fabricLoaderVersion = "0.15.0"
+ val minecraftVersion = "1.20.1"
+ val yarnBuild = "10"
+ val fabricLoaderVersion = "0.14.22"
minecraft("com.mojang:minecraft:$minecraftVersion")
mappings("net.fabricmc:yarn:$minecraftVersion+build.$yarnBuild:v2")
modImplementation("net.fabricmc:fabric-loader:$fabricLoaderVersion")
+ modImplementation("com.terraformersmc:modmenu:9.0.0")
}
tasks.processResources {