From 041cf851b3f89b9ffa9fa0aa1eff34a8add738f4 Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 11 Aug 2022 15:01:15 -0400 Subject: [PATCH] Add 'README.md' --- README.md | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 README.md 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