-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Duckulus edited this page Jul 23, 2025
·
5 revisions
The syn-sniff API is designed as a compile-only dependency. It is provided at runtime when the plugin is installed on the server. The API works both for Paper and Velocity plugins.
The plugin is published on Maven Central:
Artifact: io.github.duckulus:syn-sniff
<dependency>
<groupId>io.github.duckulus</groupId>
<artifactId>syn-sniff</artifactId>
<version>REPLACE_WITH_LATEST</version>
<scope>provided</scope>
</dependency>dependencies {
compileOnly("io.github.duckulus:syn-sniff:REPLACE_WITH_LATEST")
}Make sure to declare the dependency in plugin.yml
depend: [ SynSniff ]Add the Dependency to your plugin description
@Plugin(id="foo", dependencies = {
@Dependency(id = "syn-sniff")
})
public class FooPlugin { }