42 lines
880 B
Plaintext
42 lines
880 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "1.7.20"
|
|
id("io.izzel.taboolib") version "1.42"
|
|
}
|
|
|
|
group = "cc.maxmc.blastingcrisis"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.maxmc.cn/repository/maven-snapshots/") {
|
|
name = "maxmc"
|
|
credentials(PasswordCredentials::class.java)
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
implementation("ink.ptms.core:v10800:10800")
|
|
}
|
|
|
|
taboolib {
|
|
description {
|
|
contributors {
|
|
name("坏黑")
|
|
name("TONY_All")
|
|
}
|
|
}
|
|
install("common", "common-5")
|
|
install("platform-bukkit")
|
|
install("module-nms", "module-nms-util", "module-chat")
|
|
|
|
options("skip-kotlin-relocate")
|
|
version = "6.0.9-117"
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |