3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-07-31 01:28:13 +02:00
Geyser/build-logic/build.gradle.kts
2022-07-12 17:09:48 +00:00

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"
}
}