VoidPlugin/VoidBank/build.gradle

42 lines
1 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm'
id 'com.github.johnrengelman.shadow'
id 'net.minecrell.plugin-yml.bukkit'
}
dependencies {
compileOnly project(":VoidPlugin")
}
bukkit {
main = "nl.voidcorp.bankplugin.VoidBank"
apiVersion = '1.13'
author = 'J00LZ'
depend = ['VoidPlugin']
commands {
buymenu {
description = "Buy or sell stuff!"
}
woodstrip {
description = "Use this to transform stripped wood back into it's normal form"
}
checkcash {
description = "Check how many ECs you have in you account"
}
transfer {
description = "Send cash to another player"
}
reload {
description = "Reloads the fileconfig"
permission = "bank.reload"
permissionMessage = "You are not allowed to reload the config..."
}
}
permissions {
'bank.reload' {
setDefault("OP")
description = "Allows reloading the config"
}
}
}