mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
21 lines
451 B
Text
21 lines
451 B
Text
|
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"
|
||
|
}
|
||
|
}
|