An open API service indexing awesome lists of open source software.

https://github.com/2008choco/locksecurity

Spigot plugin. The easiest to use container protection plugin on SpigotMC! Allows the ability to lock containers with a key
https://github.com/2008choco/locksecurity

bukkit key lock locksecurity minecraft plugin protection spigot

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

          

[![](https://jitpack.io/v/2008Choco/LockSecurity.svg)](https://jitpack.io/#2008Choco/LockSecurity)

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](https://www.spigotmc.org/resources/81282/) or the [official wiki here on GitHub](https://github.com/2008Choco/LockSecurity/wiki/).

# 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](https://github.com/2008Choco/LockSecurity/releases/) for this repository).

## Maven
```xml

...

jitpack
https://jitpack.io/

...


com.github.2008Choco
LockSecurity
API-VERSION-HERE
provided


...

```

## Gradle
```groovy
repositories {
jcenter()
maven { url "https://jitpack.io" }
}

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