diff --git a/Home.md b/Home.md index c20589e..1910a2b 100644 --- a/Home.md +++ b/Home.md @@ -35,12 +35,12 @@ Make sure `mavenCentral()` is present in your Gradle repositories ### Gradle dependency (Groovy) ```groovy dependencies { - implementation 'xyz.alexcrea:CustomAnvil:1.7.1' + compileOnly'xyz.alexcrea:CustomAnvil:1.9.0' } ``` for easy copy paste: ```groovy -implementation 'xyz.alexcrea:CustomAnvil:1.7.1' +compileOnly 'xyz.alexcrea:CustomAnvil:1.9.0' ``` *** @@ -48,12 +48,12 @@ implementation 'xyz.alexcrea:CustomAnvil:1.7.1' ### Gradle dependency (Kotlin) ```kotlin dependencies { - implementation("xyz.alexcrea:CustomAnvil:1.7.1") + compileOnly("xyz.alexcrea:CustomAnvil:1.9.0") } ``` for easy copy paste: ```kotlin -implementation("xyz.alexcrea:CustomAnvil:1.7.1") +compileOnly("xyz.alexcrea:CustomAnvil:1.9.0") ``` ## Complementary information