Skip to content

koply/Botanic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Language grade: Java Build Status jitpack-version LICENSE

Moduler Discord bot engine.

Bot file path scheme:

| /libs
| /bionics
| Botanic.jar
| config.json

How To Use

git clone https://github.com/MusaBrt/Botanic
cd botanic/
mvn install

After this commands, your Botanic build ready in ./target/Botanic/

How To Install For Develop Bionic

With Maven:

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.MusaBrt</groupId>
    <artifactId>Botanic</artifactId>
    <version>JITPACK-VERSION</version>
</dependency>

With Gradle:

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.MusaBrt:Botanic:JITPACK-VERSION'
}