Updated Home (markdown)

alexcrea 2024-09-13 14:52:21 +02:00
parent 27aee142e7
commit a2611d31c7

10
Home.md

@ -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.0</version> <version>1.6.1</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.0' implementation 'xyz.alexcrea:CustomAnvil:1.6.1'
} }
``` ```
for easy copy paste: for easy copy paste:
```groovy ```groovy
implementation 'xyz.alexcrea:CustomAnvil:1.6.0' implementation 'xyz.alexcrea:CustomAnvil:1.6.1'
``` ```
*** ***
@ -48,12 +48,12 @@ implementation 'xyz.alexcrea:CustomAnvil:1.6.0'
### Gradle dependency (Kotlin) ### Gradle dependency (Kotlin)
```kotlin ```kotlin
dependencies { dependencies {
implementation("xyz.alexcrea:CustomAnvil:1.6.0") implementation("xyz.alexcrea:CustomAnvil:1.6.1")
} }
``` ```
for easy copy paste: for easy copy paste:
```kotlin ```kotlin
implementation("xyz.alexcrea:CustomAnvil:1.6.0") implementation("xyz.alexcrea:CustomAnvil:1.6.1")
``` ```
## Complementary information ## Complementary information