mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 02:20:14 +08:00
16 lines
350 B
Groovy
16 lines
350 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
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
}
|