A mod that adds your armor to the hud modrinth.com/mod/simple-armor-hud
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update dependencies and Java version in build.gradle

authored by

rh4htr and committed by
GitHub
28ec93ca 117ea1c3

+9 -10
+9 -10
build.gradle
··· 1 1 plugins { 2 - id 'net.fabricmc.fabric-loom-remap' version "${loom_version}" 2 + id 'net.fabricmc.fabric-loom' version "${loom_version}" 3 3 id 'maven-publish' 4 4 } 5 5 ··· 47 47 dependencies { 48 48 // To change the versions see the gradle.properties file 49 49 minecraft "com.mojang:minecraft:${project.minecraft_version}" 50 - mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" 51 - modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" 50 + implementation "net.fabricmc:fabric-loader:${project.loader_version}" 52 51 53 - modApi "com.terraformersmc:modmenu:${project.modmenu_version}" 52 + api "com.terraformersmc:modmenu:${project.modmenu_version}" 54 53 55 54 // Fabric API. This is technically optional, but you probably want it anyway. 56 - modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 55 + implementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 57 56 58 57 // Accessories mod 59 - // modImplementation("io.wispforest:accessories-fabric:${project.accessories_version}") 58 + // implementation("io.wispforest:accessories-fabric:${project.accessories_version}") 60 59 } 61 60 62 61 processResources { ··· 68 67 } 69 68 70 69 tasks.withType(JavaCompile).configureEach { 71 - it.options.release = 21 70 + it.options.release = 25 72 71 } 73 72 74 73 java { 75 - sourceCompatibility = JavaVersion.VERSION_21 76 - targetCompatibility = JavaVersion.VERSION_21 74 + sourceCompatibility = JavaVersion.VERSION_25 75 + targetCompatibility = JavaVersion.VERSION_25 77 76 } 78 77 79 78 jar { ··· 100 99 // The repositories here will be used for publishing your artifact, not for 101 100 // retrieving dependencies. 102 101 } 103 - } 102 + }