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
- Host: GitHub
- URL: https://github.com/2008choco/locksecurity
- Owner: 2008Choco
- License: gpl-3.0
- Created: 2017-09-24T15:59:20.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-23T17:18:47.000Z (about 5 years ago)
- Last Synced: 2026-03-13T08:38:39.969Z (4 months ago)
- Topics: bukkit, key, lock, locksecurity, minecraft, plugin, protection, spigot
- Language: Java
- Homepage: https://www.spigotmc.org/resources/81282/
- Size: 927 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[](https://jitpack.io/#2008Choco/LockSecurity)
# 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'
}
```