ModBot/README.md
2022-08-11 15:01:15 -04:00

1.0 KiB

ModBot

Usage

Gradle

Groovy DSL

First, add the repository

repositories {
    maven {
        url 'https://repo.nevets.tech/repository/maven-public/'
    }
}

Then, add the ModBot dependency:

dependencies {
    compileOnly "tech.nevets:ModBot:0.1.0-beta"
}

Kotlin DSL

First, add the repository

repositories {
    maven("https://repo.nevets.tech/repository/maven-public/")
}

Then, add the ModBot dependency:

dependencies {
    compileOnly("tech.nevets:ModBot:0.1.0-beta")
}

Maven

First, add the repository

<repositories>
    <repository>
        <id>nevets-tech-repo</id>
        <url>https://repo.nevets.tech/repository/maven-public/</url>
    </repository>
</repositories>

And then add the ModBot dependency:

<dependency>
    <groupId>tech.nevets</groupId>
    <artifactId>ModBot</artifactId>
    <version>0.1.0-beta</version>
</dependency>