Pulse
API
In this page we will cover how to use the Pulse API
To start off, in order to use the Pulse system you will
need a working license.
This will let you use the plugin itself, without it you cannot access
any API methods because the classes aren't enabled.
Downloading the API
To download the API and use inside your project you can use
a dependency manager such as Maven or Gradle.
In Gradle
Declare the Repository
maven {
url = uri("https://repo.willomane.com/repository/Pulse-API/")
}
Declare the Dependency
compileOnly 'me.will0mane.plugins:Pulse-API:latest:all'
Replace the VERSION tag with your desired API Version.
In Maven
Declare the Repository
<repositories>
<repository>
<id>pulse</id>
<url>http://repo.willomane.com/repository/Pulse-API/</url>
</repository>
</repositories>
Declare the Dependency
<dependency>
<groupId>me.will0mane.plugins</groupId>
<artifactId>Pulse-API</artifactId>
<version>latest</version>
</dependency>
Replace the VERSION tag with your desired API Version.
For more information please refer to the repository below.