Fabric, whats that?

This commit is contained in:
JFronny 2020-10-05 12:45:29 +02:00
parent 9d4e3a8d14
commit dd6879da5c
3 changed files with 1 additions and 12 deletions

View File

@ -15,12 +15,6 @@ dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}" minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
} }
processResources { processResources {

View File

@ -9,6 +9,3 @@ loader_version=0.10.0+build.208
mod_version=1.0 mod_version=1.0
maven_group=io.gitlab.jfronny maven_group=io.gitlab.jfronny
archives_base_name=Slyde archives_base_name=Slyde
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.22.1+build.409-1.16

View File

@ -7,7 +7,6 @@
"authors": [], "authors": [],
"contact": {}, "contact": {},
"license": "MIT", "license": "MIT",
"icon": "assets/Slyde/icon.png",
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"client": [ "client": [
@ -19,7 +18,6 @@
], ],
"depends": { "depends": {
"fabricloader": ">=0.10.0+build.208", "fabricloader": ">=0.10.0+build.208",
"fabric": "*", "minecraft": "*"
"minecraft": "1.16.3"
} }
} }