SpigotPortals/build.gradle.kts
2021-09-19 03:35:55 +02:00

133 lines
3.5 KiB
Plaintext

import kr.entree.spigradle.kotlin.spigot
plugins {
kotlin("jvm") version "1.5.30"
id("kr.entree.spigradle") version "2.2.4"
}
group = "dev.w1zzrd"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
compileOnly(spigot("1.17.1"))
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.5.30")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}
tasks.getByName<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>("compileKotlin") {
kotlinOptions {
jvmTarget = "16"
}
}
tasks.getByName<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>("compileTestKotlin") {
kotlinOptions {
jvmTarget = "16"
}
}
spigot {
description = "Simple portals plugin"
depends = listOf("Kotlin")
load = kr.entree.spigradle.data.Load.STARTUP
commands {
create("portals") {
aliases = listOf("p", "portal")
description = "Create a portal"
permission = "portals.create"
permissionMessage = "You do not have permission to create portals"
}
}
permissions {
create("portals.create") {
description = "Allows portal creation"
defaults = "true"
}
create("portals.list") {
description = "Allows listing portals"
defaults = "true"
}
create("portals.list.other") {
description = "Allows listing other players' portals"
defaults = "op"
}
create("portals.tp") {
description = "Allows teleporting to a portal"
defaults = "op"
}
create("portals.tp.other") {
description = "Allows teleporting to other players' portals"
defaults = "op"
}
create("portals.modify.remove") {
description = "Allows portal removal"
defaults = "true"
}
create("portals.modify.edit") {
description = "Allows portal position and orientation editing"
defaults = "true"
}
create("portals.modify.target") {
description = "Allows targeting/un-targeting a portal as a destination"
defaults = "true"
}
create("portals.modify.allow") {
description = "Allows another player to use a portal"
defaults = "true"
}
create("portals.modify.other") {
description = "Allows modification of other players' portals"
defaults = "op"
}
create("portals.modify.*") {
description = "Wildcard portal modification"
defaults = "op"
children = mapOf(
"portals.modify.remove" to true,
"portals.modify.edit" to true,
"portals.modify.target" to true,
"portals.modify.allow" to true,
"portals.modify.other" to true
)
}
create("portals.*") {
description = "Top-level wildcard"
defaults = "op"
children = mapOf(
"portals.create" to true,
"portals.list" to true,
"portals.list.other" to true,
"portals.tp" to true,
"portals.tp.other" to true,
"portals.modify.*" to true
)
}
}
debug {
jvmArgs("-Xmx4G")
buildVersion = "1.17.1"
}
}