2008Choco / LockSecurity

Spigot plugin. The easiest to use container protection plugin on SpigotMC! Allows the ability to lock containers with a key

Home Page:https://www.spigotmc.org/resources/81282/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Spigot plugin. The easiest to use container protection plugin on SpigotMC! Allows the ability to lock containers with a key

https://www.spigotmc.org/resources/81282/

License:GNU General Public License v3.0


Languages

Language:Java 100.0%