forked from KosmX/emotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
66 lines (54 loc) · 1.18 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
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'Architectury maven'
url = 'https://maven.architectury.dev/'
}
maven {
name = 'hell'
url = 'https://maven.minecraftforge.net/'
content{
excludeGroupByRegex "org\\.eclipse\\.?.*"
}
}
}
}
rootProject.name = "emotecraft"
include 'emotesAPI'
//include 'oldJunk'
include 'executor'
include 'emotesServer'
include 'emotesMain'
// Minecraft 1.16 version
include '16'
include '16:archCommon'
include '16:fabric'
include '16:forge'
//Minecraft 1.18 version
include '18'
include '18:archCommon'
include '18:fabric'
include '18:forge'
//Minecraft 1.19 version
include '19'
include '19:archCommon'
include '19:fabric'
include '19:forge'
//Minecraft 1.19.3 version
include '19_3'
include '19_3:archCommon'
include '19_3:fabric'
include '19_3:forge'
//Bukkit plugin stuff
include 'bukkit'
include 'bukkit:debug'
//Bungee plugin stuff
include 'bungee'
//Velocity plugin stuff
include 'velocity'
//*/