Convert to Kotlin

This commit is contained in:
2023-08-28 19:07:38 -05:00
parent 81020af843
commit 74915388bf
9 changed files with 96 additions and 60 deletions

59
build.gradle.kts Normal file
View File

@ -0,0 +1,59 @@
plugins {
java
`maven-publish`
}
repositories {
maven {
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven {
url = uri("https://nexus.telesphoreo.me/repository/plex/")
}
maven {
url = uri("https://repo.dmulloy2.net/repository/public/")
}
mavenCentral()
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
compileOnly("dev.plex:server:1.3")
implementation("com.comphenix.protocol:ProtocolLib:5.1.0")
}
group = "dev.plex"
version = "1.0"
description = "ExampleModule"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
publishing {
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}
tasks.getByName < Jar > ("jar") {
archiveBaseName.set("Plex-ExampleModule")
archiveVersion.set("")
}
tasks {
compileJava {
options.encoding = Charsets.UTF_8.name()
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
}