mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 18:40:15 +08:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||
|
|
||
|
plugins {
|
||
|
id("kotlin")
|
||
|
kotlin("plugin.serialization")
|
||
|
id("java")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
all {
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.Experimental")
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.OptIn")
|
||
|
languageSettings.progressiveMode = true
|
||
|
languageSettings.useExperimentalAnnotation("net.mamoe.mirai.utils.MiraiInternalAPI")
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.experimental.ExperimentalTypeInference")
|
||
|
languageSettings.useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(kotlin("stdlib"))
|
||
|
}
|
||
|
|
||
|
val compileKotlin: KotlinCompile by tasks
|
||
|
compileKotlin.kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
val compileTestKotlin: KotlinCompile by tasks
|
||
|
compileTestKotlin.kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
tasks.withType(JavaCompile::class.java) {
|
||
|
options.encoding = "UTF8"
|
||
|
}
|