+ +> ##### Groovy DSL + +First, add the repository + +```groovy +repositories { + maven { + url 'https://repo.nevets.tech/repository/maven-public/' + } +} +``` +Then, add the ModBot dependency: + +```groovy +dependencies { + compileOnly "tech.nevets:ModBot:0.1.0-beta" +} + ``` + +> #### Kotlin DSL + +First, add the repository + +```kotlin +repositories { + maven("https://repo.nevets.tech/repository/maven-public/") +} +``` + +Then, add the ModBot dependency: + +```kotlin +dependencies { + compileOnly("tech.nevets:ModBot:0.1.0-beta") +} +``` + +
+
+
+First, add the repository
+
+```xml
+