mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-24 23:20:09 +08:00
16 lines
395 B
Groovy
16 lines
395 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
|
|
|
|
compile group: 'com.google.protobuf', name: 'protobuf-java', version: rootProject.ext.protobuf_version
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
} |