mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-03 13:30:51 +07:00
6b9c98edc5
* Allow Java 8 to run this seamlessly, because really, why not? Resolves #11121 Resolves #11074 * Apparently * Correct version-to-string
24 lines
313 B
Plaintext
24 lines
313 B
Plaintext
|
|
plugins {
|
|
id("kotlin")
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDir("src/")
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
|
|
target {
|
|
compilations.all {
|
|
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
}
|
|
}
|
|
java {
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|