mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 10:30:13 +08:00
15 lines
384 B
Groovy
15 lines
384 B
Groovy
|
apply plugin: "kotlin"
|
||
|
apply plugin: "java"
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':mirai-core')
|
||
|
compile 'com.google.protobuf:protobuf-java:3.5.0'
|
||
|
compile files('./lib/jpcap.jar')
|
||
|
|
||
|
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0-M2'
|
||
|
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.3.50'
|
||
|
}
|
||
|
|
||
|
tasks.withType(JavaCompile) {
|
||
|
options.encoding = "UTF-8"
|
||
|
}
|