This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle
72 lines (49 loc) · 2.16 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
rootProject.name = 'redi-cloud'
include 'api:api'
findProject(':api:api')?.name = 'api'
include 'api:api-default-impl'
findProject(':api:api-default-impl')?.name = 'api-default-impl'
include 'api:api-minecraft'
findProject(':api:api-minecraft')?.name = 'api-minecraft'
include 'api:api-node'
findProject(':api:api-node')?.name = 'api-node'
include 'api:api-bungeecord'
findProject(':api:api-bungeecord')?.name = 'api-bungeecord'
include 'commands:command-bukkit'
findProject(':commands:command-bukkit')?.name = 'command-bukkit'
include 'commands:command-bungeecord'
findProject(':commands:command-bungeecord')?.name = 'command-bungeecord'
include 'commands:command-console'
findProject(':commands:command-console')?.name = 'command-console'
include 'commands:command-core'
findProject(':commands:command-core')?.name = 'command-core'
include 'commands:command-locales'
findProject(':commands:command-locales')?.name = 'command-locales'
include 'commons'
findProject(':commons')?.name = 'commons'
include 'node:node-runner'
findProject(':node:node-runner')?.name = 'node-runner'
include 'node:node-base'
findProject(':node:node-base')?.name = 'node-base'
include 'plugins:plugin-minecraft'
findProject(':plugins:plugin-minecraft')?.name = 'plugin-minecraft'
include 'plugins:plugin-bungeecord'
findProject(':plugins:plugin-bungeecord')?.name = 'plugin-bungeecord'
include 'plugins:plugin-velocity'
findProject(':plugins:plugin-velocity')?.name = 'plugin-velocity'
include 'commands:command-velocity'
findProject(':commands:command-velocity')?.name = 'command-velocity'
include 'api:api-velocity'
findProject(':api:api-velocity')?.name = 'api-velocity'
include 'limbo-server'
findProject(':limbo-server')?.name = 'limbo-server'
include 'auto-updater'
findProject(':auto-updater')?.name = 'auto-updater'
include 'module-handler'
findProject(':module-handler')?.name = 'module-handler'
include 'modules:test-module'
findProject('modules:test-module')?.name = 'test-module'
include 'dependency:dependency-loader'
findProject(':dependency:dependency-loader')?.name = 'dependency-loader'
include 'dependency:dependency-agent'
findProject(':dependency:dependency-agent')?.name = 'dependency-agent'