Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
21 Zeilen
451 B
Plaintext
21 Zeilen
451 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("net.kyori", "indra-common", "2.0.6")
|
|
implementation("org.jfrog.buildinfo", "build-info-extractor-gradle", "4.26.1")
|
|
implementation("gradle.plugin.com.github.johnrengelman", "shadow", "7.1.1")
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "16"
|
|
}
|
|
} |