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.
## 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
<dependency>
<groupId>xyz.alexcrea</groupId>
<artifactId>CustomAnvil</artifactId>
<version>1.6.7</version>
<version>1.6.9</version>
</dependency>
```
@ -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