diff --git a/maven-repository.mdx b/maven-repository.mdx index c90c5f9..d303017 100644 --- a/maven-repository.mdx +++ b/maven-repository.mdx @@ -53,14 +53,14 @@ Visiting the root of the repository in a web browser will redirect to this page, com.lunarclient apollo-api - 1.0.8 + 1.0.9 provided com.lunarclient apollo-extra-adventure4 - 1.0.8 + 1.0.9 provided @@ -69,20 +69,20 @@ Visiting the root of the repository in a web browser will redirect to this page, ```groovy filename="build.gradle" dependencies { - compileOnly 'com.lunarclient:apollo-api:1.0.8' + compileOnly 'com.lunarclient:apollo-api:1.0.9' // For Adventure support add the following dependency. - compileOnly 'com.lunarclient:apollo-extra-adventure4:1.0.8' + compileOnly 'com.lunarclient:apollo-extra-adventure4:1.0.9' } ``` ```kotlin filename="build.gradle.kts" dependencies { - compileOnly("com.lunarclient:apollo-api:1.0.8") + compileOnly("com.lunarclient:apollo-api:1.0.9") // For Adventure support add the following dependency. - compileOnly("com.lunarclient:apollo-extra-adventure4:1.0.8") + compileOnly("com.lunarclient:apollo-extra-adventure4:1.0.9") } ```