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 1/3] 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') } ``` From 3d0116fa1b9df316c0424399d33aaad4ca844e73 Mon Sep 17 00:00:00 2001 From: Flemmli97 <34157027+Flemmli97@users.noreply.github.com> Date: Wed, 21 Jul 2021 00:35:10 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a35058c..bd0da29 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ dependencies { 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') { + modCompileOnly('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-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') { + modRuntime('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}') { transitive = false //Remove this if you want to have all those optional dependencies } @@ -30,7 +30,7 @@ dependencies { 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') + compileOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-api') + runtimeOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-api') } ``` From 0ef8c8bb625e7187b2501ffcd8dd063938a7e753 Mon Sep 17 00:00:00 2001 From: Flemmli97 <34157027+Flemmli97@users.noreply.github.com> Date: Wed, 21 Jul 2021 00:35:19 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd0da29..49e943b 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,6 @@ dependencies { //Use the following lines for 1.6.0+ compileOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-api') - runtimeOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}-api') + runtimeOnly fg.deobf('io.github.flemmli97:flan:${flan_version}-${minecraft_version}:${mod_loader}') } ```