mirror of
https://github.com/barkeser2002/BarisKeserTools-MC.git
synced 2026-09-25 02:19:52 +03:00
23 lines
385 B
Kotlin
23 lines
385 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "tr.com"
|
|
version = "1.3.6.10"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
} |