For information about the plugin and how to use it, please see the plugin's resource page on SpigotMC or the official wiki here on GitHub.
LockSecurity deploys an API artifact to Jitpack for developers to depend on in order to interact with LockSecurity without having to purchase the project on SpigotMC. This artifact is provided free of charge. In order to use the API in your project, you must include the following in your project's build file:
(The latest version of the API may be found on the GitHub Releases page for this repository).
<project>
...
<repositories>
<id>jitpack</id>
<url>https://jitpack.io/</url>
</repositories>
...
<dependencies>
<dependency>
<groupId>com.github.2008Choco</groupId>
<artifactId>LockSecurity</artifactId>
<version>API-VERSION-HERE</version>
<scope>provided</scope>
</dependency>
</dependencies>
...
</project>
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
implementation 'com.github.2008Choco:LockSecurity:API-VERSION-HERE'
}