-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
34 lines (31 loc) · 1.14 KB
/
settings.gradle.kts
File metadata and controls
34 lines (31 loc) · 1.14 KB
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
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.4.0")
}
rootProject.name = "AgoraBot"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":util")
include(":util:common")
include(":util:discord")
include(":util:irc")
include(":core:config")
include(":core:feature")
include(":core:command")
include(":base-command:api")
include(":base-command:requirements:discord")
include(":base-command:requirements:discord-ext")
include(":base-command:requirements:permissions")
include(":base-command:requirements:haltable")
include(":components:buttons")
include(":components:persist")
include(":components:permissions")
include(":components:guild-state")
include(":components:community-message")
include(":components:versioning-storage")
include(":components:secret-hitler:model")
include(":components:secret-hitler:context")
include(":components:secret-hitler:button-data")
include(":components:secret-hitler:storage:api")
include(":components:secret-hitler:storage:impl")
include(":components:secret-hitler:storage:feature:api")
include(":components:secret-hitler:storage:feature:impl")
include(":components:secret-hitler:handlers")