mirror of
https://github.com/GeyserMC/Floodgate.git
synced 2025-07-20 07:01:51 +00:00
23 lines
525 B
Plaintext
23 lines
525 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("net.kyori", "indra-common", "3.0.1")
|
|
implementation("net.kyori", "indra-git", "3.0.1")
|
|
implementation("gradle.plugin.com.github.johnrengelman", "shadow", "7.1.1")
|
|
implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext", "gradle-idea-ext", "1.1.7")
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|