Skip to content

Despical/MusicBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Music Bot

Support

Example implementation of LavaPlayer for Discord bots.

Documentation

Donations

Using Music Bot API

The project isn't in the Central Repository yet, so specifying a repository is needed.
To add this project as a dependency to your project, add the following to your pom.xml:

Maven dependency
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.Despical</groupId>
    <artifactId>MusicBot</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <scope>compile</scope>
</dependency>
Gradle dependency
repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    compileOnly group: "com.github.Despical", name: "MusicBot", version: "1.0.0-SNAPSHOT";
}

License

This code is under GPL-3.0 License

See the LICENSE file for required notices and attributions.

Contributing

I accept Pull Requests via GitHub. There are some guidelines which will make applying PRs easier for me:

  • No spaces! Please use tabs for indentation.
  • Respect the code style.
  • Create minimal diffs. If you feel the source code should be reformatted create a separate PR for this change.

You can learn more about contributing via GitHub in contribution guidelines.

Building from source

If you want to build this project from source code, run the following from Git Bash:

git clone https://www.github.com/Despical/MusicBot.git && cd MusicBot
mvn clean package

The build can then be found in /MusicBot/target/

Note Don't forget to install Maven before building.