From c20eb476f81fa1d0bf04840969258b240aedd8f9 Mon Sep 17 00:00:00 2001 From: alexcrea <42614139+alexcrea@users.noreply.github.com> Date: Tue, 19 Nov 2024 17:14:40 +0100 Subject: [PATCH] Updated Home (markdown) --- Home.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Home.md b/Home.md index 54844aa..963e181 100644 --- a/Home.md +++ b/Home.md @@ -15,7 +15,7 @@ Here are the general step to make your plugin compatible with Custom Anvil: You can also register Custom anvil recipe if you like to. ## Add custom anvil as dependency -Custom Anvil is available on [Maven Central](https://central.sonatype.com/artifact/xyz.alexcrea/CustomAnvil) +Custom Anvil is available on Maven Central. You can check the lastest version [here](https://central.sonatype.com/artifact/xyz.alexcrea/CustomAnvil) Make sure `mavenCentral()` is present in your Gradle repositories @@ -25,7 +25,7 @@ Make sure `mavenCentral()` is present in your Gradle repositories xyz.alexcrea CustomAnvil - 1.6.7 + 1.6.9 ``` @@ -35,12 +35,12 @@ Make sure `mavenCentral()` is present in your Gradle repositories ### Gradle dependency (Groovy) ```groovy dependencies { - implementation 'xyz.alexcrea:CustomAnvil:1.6.7' + implementation 'xyz.alexcrea:CustomAnvil:1.6.9' } ``` for easy copy paste: ```groovy -implementation 'xyz.alexcrea:CustomAnvil:1.6.7' +implementation 'xyz.alexcrea:CustomAnvil:1.6.9' ``` *** @@ -48,12 +48,12 @@ implementation 'xyz.alexcrea:CustomAnvil:1.6.7' ### Gradle dependency (Kotlin) ```kotlin dependencies { - implementation("xyz.alexcrea:CustomAnvil:1.6.7") + implementation("xyz.alexcrea:CustomAnvil:1.6.9") } ``` for easy copy paste: ```kotlin -implementation("xyz.alexcrea:CustomAnvil:1.6.7") +implementation("xyz.alexcrea:CustomAnvil:1.6.9") ``` ## Complementary information