mirai/mirai-debug/build.gradle
2019-10-09 16:26:36 +08:00

15 lines
288 B
Groovy

apply plugin: "kotlin"
apply plugin: "java"
dependencies {
implementation project(':mirai-core')
compile files('./lib/jpcap.jar')
compile rootProject.ext.coroutineCommon
compile rootProject.ext.kotlinJvm
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}