Kotlin library for simplify plugin development
paper-language-kotlin - plugin library that enables the use of the Kotlin programming language for Minecraft plugins.
This plugin adds functions to simplify the development of plugins in Kotlin.
Add the JitPack repository:
repositories {
maven("https://jitpack.io")
}
Add the dependency to your plugin:
dependencies {
// if you install the plugin on the server, use `compileOnly()`
implementation("com.github.alexthegoood:paper-language-kotlin:Tag")
}