Setup & Installation
Maven Configuration
1. Repository
<repositories>
<repository>
<id>particleplus-releases</id>
<url>https://repo.dominikhun250.dev/releases</url>
</repository>
</repositories>2. Dependency
<dependencies>
<dependency>
<groupId>me.dominikhun250.dev</groupId>
<artifactId>ParticlePlus-API</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>Plugin Hooking
Declare the dependency in your plugin.yml.
depend: [ParticlePlus]IMPORTANT
Always set the
<scope>toprovided.Do not shade the API into your plugin JAR.
The main ParticlePlus plugin installed on the server provides the required classes at runtime.