From 5cde528d0dec3a76b4c031b428dad45cfd6e0778 Mon Sep 17 00:00:00 2001 From: Flemmli97 <34157027+Flemmli97@users.noreply.github.com> Date: Wed, 21 Jul 2021 00:33:27 +0200 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 520532c..a35058c 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,23 @@ repositories { dependencies { modImplementation "io.github.flemmli97:flan:${flan_version}-${minecraft_version}" // for version 1.5.0 below + + //Fabric========== modImplementation "io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}" // for version 1.5.0 and up + + //Use the following lines for 1.6.0+ + modCompileOnly('io.github.flemmli97:flan:1.17.1-1.5.4:api') { + transitive = false //Remove this if you want to have all those optional dependencies + } + modRuntime('io.github.flemmli97:flan:1.17.1-1.5.4:api') { + transitive = false //Remove this if you want to have all those optional dependencies + } + + //Forge========== + compile fg.deobf("io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}") // for version 1.5.0 and up + + //Use the following lines for 1.6.0+ + compileOnly fg.deobf('io.github.flemmli97:flan:1.17.1-1.5.4:api') + runtimeOnly fg.deobf('io.github.flemmli97:flan:1.17.1-1.5.4:api') } ```