diff --git a/Home.md b/Home.md index c20700e..6066e8e 100644 --- a/Home.md +++ b/Home.md @@ -13,9 +13,33 @@ 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) -Currently, there is no clean way to add Custom Anvil as a dependency for your plugin. \ -Working on that. +Make sure `mavenCentral()` is present in your gradle repositories + +### Maven dependency + +```xml + + xyz.alexcrea + CustomAnvil + 1.5.2 + +``` + +### Gradle dependency (Groovy) +```groovy +dependencies { + implementation 'xyz.alexcrea:CustomAnvil:1.5.2' +} +``` + +### Gradle dependency (Kotlin) +```groovy +dependencies { + implementation("xyz.alexcrea:CustomAnvil:1.5.2") +} +``` ## Complementary information