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