Skip to content

2008Choco/LockSecurity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Javadocs Wiki Follow on Twitter

LockSecurity

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.

Depending on the LockSecurity API

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).

Maven

<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>

Gradle

  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }

  dependencies {
    implementation 'com.github.2008Choco:LockSecurity:API-VERSION-HERE'
  }