Updated Home (markdown)

alexcrea 2024-11-19 17:14:40 +01:00
parent 9a1a4f27af
commit c20eb476f8

12
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. You can also register Custom anvil recipe if you like to.
## Add custom anvil as dependency ## 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 Make sure `mavenCentral()` is present in your Gradle repositories
@ -25,7 +25,7 @@ Make sure `mavenCentral()` is present in your Gradle repositories
<dependency> <dependency>
<groupId>xyz.alexcrea</groupId> <groupId>xyz.alexcrea</groupId>
<artifactId>CustomAnvil</artifactId> <artifactId>CustomAnvil</artifactId>
<version>1.6.7</version> <version>1.6.9</version>
</dependency> </dependency>
``` ```
@ -35,12 +35,12 @@ Make sure `mavenCentral()` is present in your Gradle repositories
### Gradle dependency (Groovy) ### Gradle dependency (Groovy)
```groovy ```groovy
dependencies { dependencies {
implementation 'xyz.alexcrea:CustomAnvil:1.6.7' implementation 'xyz.alexcrea:CustomAnvil:1.6.9'
} }
``` ```
for easy copy paste: for easy copy paste:
```groovy ```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) ### Gradle dependency (Kotlin)
```kotlin ```kotlin
dependencies { dependencies {
implementation("xyz.alexcrea:CustomAnvil:1.6.7") implementation("xyz.alexcrea:CustomAnvil:1.6.9")
} }
``` ```
for easy copy paste: for easy copy paste:
```kotlin ```kotlin
implementation("xyz.alexcrea:CustomAnvil:1.6.7") implementation("xyz.alexcrea:CustomAnvil:1.6.9")
``` ```
## Complementary information ## Complementary information