mirai/mirai-debug/build.gradle
2019-10-19 23:19:45 +08:00

18 lines
451 B
Groovy

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