mirror of
https://github.com/mamoe/mirai.git
synced 2025-02-25 19:50:15 +08:00
* feat(idea): set proxy repository for gradle plugins * feat(idea): provide an option for whether to use the proxy repo * chore: update copyright * fix: rename the message key
21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '$KOTLIN_VERSION'
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '$KOTLIN_VERSION'
|
|
|
|
id 'net.mamoe.mirai-console' version '$MIRAI_VERSION'
|
|
}
|
|
|
|
group = '$GROUP_ID'
|
|
version = '$VERSION'
|
|
|
|
repositories {
|
|
#if($USE_PROXY_REPO)
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
#end
|
|
mavenCentral()
|
|
}
|
|
|
|
mirai {
|
|
jvmTarget JavaVersion.VERSION_1_8
|
|
}
|