mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-09 18:00:33 +08:00
24 lines
901 B
Groovy
24 lines
901 B
Groovy
rootProject.name = 'mirai'
|
|
|
|
include(':mirai-core')
|
|
|
|
include(':mirai-console')
|
|
include(':mirai-api')
|
|
include(':mirai-api-http')
|
|
include(':mirai-demos:mirai-demo-1')
|
|
include(':mirai-demos:mirai-demo-gentleman')
|
|
include(':mirai-demos')
|
|
include(':mirai-demos:mirai-demo-android')
|
|
|
|
def javaVersion = System.getProperty("java.version")
|
|
if (javaVersion.substring(0, javaVersion.indexOf(".")).toInteger() >= 11) {
|
|
include(':mirai-debug')
|
|
} else {
|
|
println("当前使用的 JDK 版本为 ${System.getProperty("java.version")}, 最低需要 JDK 11 才能引入模块 `:mirai-debug`")
|
|
}
|
|
|
|
project(':mirai-demos:mirai-demo-1').projectDir = file('mirai-demos/mirai-demo-1')
|
|
project(':mirai-demos:mirai-demo-gentleman').projectDir = file('mirai-demos/mirai-demo-gentleman')
|
|
project(':mirai-demos:mirai-demo-android').projectDir = file('mirai-demos/mirai-demo-android')
|
|
|
|
enableFeaturePreview('GRADLE_METADATA') |