mirai/mirai-debug/build.gradle

16 lines
395 B
Groovy
Raw Normal View History

2019-10-03 19:07:03 +08:00
apply plugin: "kotlin"
apply plugin: "java"
dependencies {
implementation project(':mirai-core')
compile files('./lib/jpcap.jar')
2019-10-08 16:35:30 +08:00
compile rootProject.ext.coroutineCommon
compile rootProject.ext.kotlinJvm
compile group: 'com.google.protobuf', name: 'protobuf-java', version: rootProject.ext.protobuf_version
2019-10-03 19:07:03 +08:00
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}