-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle
34 lines (30 loc) · 994 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
rootProject.name = 'LuckPerms-Mirai'
includeBuild('LuckPerms')
/*
* Copyright (c) 2018-2020 Karlatemp. All rights reserved.
* @author Karlatemp <[email protected]> <https://github.com/Karlatemp>
*
* LuckPerms-Mirai/LuckPerms-Mirai/settings.gradle
*
* Use of this source code is governed by the GNU AFFERO GENERAL PUBLIC LICENSE version 3 license that can be found via the following link.
*
* https://github.com/Karlatemp/LuckPerms-Mirai/blob/master/LICENSE
*/
/*
({
def settings = new Properties()
def file = new File("./settings.properties")
if (file.isFile()) {
file.withReader { settings.load(it) }
includeBuild(settings.getProperty("console"))
} else {
def console = new File("mirai-console")
if (!console.isDirectory()) {
Runtime.getRuntime().exec("git clone https://github.com/mamoe/mirai-console.git")
}
includeBuild("mirai-console")
}
})()
*/
include(':test-plugin')
include(':public-api')