diff --git a/README.md b/README.md new file mode 100644 index 0000000..5136ba0 --- /dev/null +++ b/README.md @@ -0,0 +1,72 @@ +# ModBot + +### Usage +
Gradle +

+ +> ##### 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") +} +``` + +

+
+ +
Maven +

+ +First, add the repository + +```xml + + + nevets-tech-repo + https://repo.nevets.tech/repository/maven-public/ + + +``` + +And then add the ModBot dependency: + +```xml + + tech.nevets + ModBot + 0.1.0-beta + +``` + +

+
\ No newline at end of file diff --git a/build.gradle b/build.gradle index 7e46655..2b19237 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { mainClassName = 'tech.nevets.modbot.CoreBot' group 'tech.nevets' -version '0.1.0' +version '0.1.0-beta' sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 diff --git a/settings.gradle b/settings.gradle index f18166d..da175ea 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = 'ModularBot' +rootProject.name = 'ModBot'