mirror of
https://github.com/irmen/prog8.git
synced 2024-12-22 18:30:01 +00:00
27 lines
486 B
Plaintext
27 lines
486 B
Plaintext
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
kotlin("jvm") version "2.1.0"
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin="kotlin")
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs = listOf("-Xwhen-guards")
|
|
jvmTarget = JvmTarget.JVM_11
|
|
}
|
|
}
|
|
|
|
java {
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
}
|