pv-addon-lavaplayer-lib

This addon is a library that comes bundled with a fork of LavaPlayer. This library is required for the operation of some Plasmo Voice additional modules.
Installation
- Download the addon from the official source
- Install the library in the appropriate folder:
- For Paper servers - place the file in the
~/pluginsdirectory - For Fabric or Forge - install in the
~/modsfolder
- For Paper servers - place the file in the
- Restart the server to apply changes
Project Integration (for developers)
Kotlin DSL
repositories {
maven("https://repo.plo.su")
}
dependencies {
compileOnly("su.plo:pv-addon-lavaplayer-lib:1.0.2")
}
Groovy DSL
repositories {
maven { url 'https://repo.plo.su/' }
}
dependencies {
compileOnly 'su.plo:pv-addon-lavaplayer-lib:1.0.2'
}
Usage with Universal Addons
Kotlin
@Addon(
...
dependencies = [
Dependency(id = "pv-addon-lavaplayer-lib")
]
)
Java
@Addon(
...
dependencies = {
@Dependency(id = "pv-addon-lavaplayer-lib")
}
)
Usage with Bukkit Plugins
Add pv-addon-lavaplayer-lib to the depend section of the plugin.yml file:
depend:
- pv-addon-lavaplayer-lib