This repository has been archived by the owner on Nov 8, 2020. It is now read-only.
forked from CloudNetService/CloudNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
44 lines (39 loc) · 1.83 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
rootProject.name = 'cloudnet-root'
// requires
include 'cloudnet-common'
include 'cloudnet-driver'
// exports
include 'cloudnet-wrapper-jvm'
include 'cloudnet'
// launcher
include 'cloudnet-launcher'
include 'cloudnet-modules'
include 'cloudnet-plugins'
// modules for cloudnet
include 'cloudnet-modules:cloudnet-signs'
findProject(':cloudnet-modules:cloudnet-signs')?.name = 'cloudnet-signs'
include 'cloudnet-modules:cloudnet-bridge'
findProject(':cloudnet-modules:cloudnet-bridge')?.name = 'cloudnet-bridge'
include 'cloudnet-modules:cloudnet-smart'
findProject(':cloudnet-modules:cloudnet-smart')?.name = 'cloudnet-smart'
include 'cloudnet-modules:cloudnet-syncproxy'
findProject(':cloudnet-modules:cloudnet-syncproxy')?.name = 'cloudnet-syncproxy'
include 'cloudnet-modules:cloudnet-cloudflare'
findProject(':cloudnet-modules:cloudnet-cloudflare')?.name = 'cloudnet-cloudflare'
include 'cloudnet-modules:cloudnet-storage-ftp'
findProject(':cloudnet-modules:cloudnet-storage-ftp')?.name = 'cloudnet-storage-ftp'
include 'cloudnet-modules:cloudnet-report'
findProject(':cloudnet-modules:cloudnet-report')?.name = 'cloudnet-report'
include 'cloudnet-modules:cloudnet-database-mysql'
findProject(':cloudnet-modules:cloudnet-database-mysql')?.name = 'cloudnet-database-mysql'
include 'cloudnet-modules:cloudnet-cloudperms'
findProject(':cloudnet-modules:cloudnet-cloudperms')?.name = 'cloudnet-cloudperms'
//plugins
include 'cloudnet-plugins:cloudnet-simplenametags'
findProject(':cloudnet-plugins:cloudnet-simplenametags')?.name = 'cloudnet-simplenametags'
include 'cloudnet-plugins:cloudnet-chat'
findProject(':cloudnet-plugins:cloudnet-chat')?.name = 'cloudnet-chat'
include 'cloudnet-examples'
include 'cloudnet-modules:cloudnet-rest'
findProject(':cloudnet-modules:cloudnet-rest')?.name = 'cloudnet-rest'
include ':cloudnet-wrapper-jvm:minecraft-launchwrapper-api'