mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2026-02-03 21:55:05 +01:00
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
# project informations for Bukkit in order to register our plugin with all it components
|
|
# ${project.name} are variables from Maven (pom.xml) which will be replaced after the build
|
|
name: ${project.name}
|
|
version: ${project.version}
|
|
main: ${project.groupId}.${project.artifactId}.${project.name}
|
|
|
|
# meta informations for plugin managers
|
|
authors: [games647, 'https://github.com/games647/FastLogin/graphs/contributors']
|
|
description: |
|
|
${project.description}
|
|
website: ${project.url}
|
|
dev-url: ${project.url}
|
|
|
|
# Without Protocollib the plugin does not work at all
|
|
depend: [ProtocolLib]
|
|
# Auth plugins
|
|
softdepend:
|
|
- xAuth
|
|
- AuthMe
|
|
- CrazyLogin
|
|
- LoginSecurity
|
|
|
|
commands:
|
|
${project.artifactId}.:
|
|
description: 'Label the invoker or the player specified as premium'
|
|
aliases: [prem, premium, loginfast]
|
|
usage: /<command> [player]
|
|
permission: ${project.artifactId}.command.premium
|
|
|
|
permissions:
|
|
${project.artifactId}.command.premium:
|
|
description: 'Label themselves as premium using a command'
|
|
default: true |