mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-09 18:00:33 +08:00
18 lines
370 B
Groovy
18 lines
370 B
Groovy
apply plugin: "kotlin"
|
|
apply plugin: "application"
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(':mirai-core')
|
|
|
|
compile rootProject.ext.kotlinCommon
|
|
compile rootProject.ext.kotlinJvm
|
|
compile rootProject.ext.reflect
|
|
compile rootProject.ext.coroutine
|
|
}
|
|
|
|
sourceCompatibility = "11"
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
} |