25 lines
591 B
Plaintext
25 lines
591 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.6.10"
|
|
id("io.papermc.paperweight.userdev") version "1.3.3"
|
|
id("xyz.jpenilla.run-paper") version "1.0.6" // Adds runServer and runMojangMappedServer tasks for testing
|
|
id("net.minecrell.plugin-yml.bukkit") version "0.5.1" // Generates plugin.yml
|
|
}
|
|
|
|
group = "cc.maxmc.sample"
|
|
version = "1.0-XIEYAN"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
paperDevBundle("1.18.1-R0.1-SNAPSHOT")
|
|
implementation(kotlin("stdlib"))
|
|
}
|
|
|
|
bukkit {
|
|
main = "cc.maxmc.sample.PacketSample"
|
|
apiVersion = "1.18"
|
|
authors = listOf("Author")
|
|
}
|