Plugins allow extending andesite's functionality with your own code.
During startup, andesite will look for plugins in a folder named plugins,
in the current working directory, if it exists. Everything inside it will
be treated as a plugin root.
Additional plugin roots may be provided with the extra-plugins configuration.
Andesite will fail to start if any plugin fails to load.
An example plugin is available here
The plugin API is also available as a jar in the releases.
Javadocs can be found on github pages
A plugin root is either a jar file or a directory. Plugins must define a file named
manifest.json in the root, with the following format:
{
"classes": [
"plugin.class.One",
"plugin.class.Two"
]
}If the manifest is missing, andesite will ignore the root. If present, the manifest must be
a valid json object and contain the classes key, or loading will fail. The array may be left empty,
although that would render the plugin useless, as all plugins are completely isolated from each other.
All entry points defined in manifest.json must implement the Plugin
interface.
The classes must also be contained in the plugin root, with their path being
ROOT_PATH + "/" + CLASS_NAME.replace('.', '/') + ".class". Jar files built by any
build tool already follow this format, so no extra work is required.
A valid plugin root looks like the following
<ROOT>/
├── my/
| └── package/
| └── MyPlugin.class
└── manifest.json
The plugin API is exposed with the api module. You can get it from bintray
<repositories>
<repository>
<id>bintray-natanbc-maven</id>
<name>bintray</name>
<url>https://dl.bintray.com/natanbc/maven</url>
</repository>
<repository>
<id>jitpack</id>
<name>jitpack</name>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.natanbc</groupId>
<artifactId>andesite-api</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>repositories {
maven { url 'https://dl.bintray.com/natanbc/maven' }
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.github.natanbc:andesite-api:VERSION'
}The Plugin interface defines the callbacks andesite will call after loading your plugin.
Plugins may provide custom AudioHandlers by providing a class that implements the interface.
The class must have a public constructor accepting a single NodeState argument.
To use a custom handler, the audio-handler setting must be the fully qualified class name
of the handler.