-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
61 lines (58 loc) · 1.94 KB
/
settings.gradle.kts
File metadata and controls
61 lines (58 loc) · 1.94 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
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven("https://maven.fabricmc.net")
maven("https://maven.architectury.dev/")
maven("https://repo.essential.gg/repository/maven-public")
maven("https://maven.minecraftforge.net")
}
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.PREFER_SETTINGS
repositories {
mavenCentral()
maven(url = "https://maven.fabricmc.net/")
maven(url = "https://repo.spongepowered.org/maven")
maven(url = "https://maven.neoforged.net/releases")
maven(url = "https://maven.minecraftforge.net/")
maven(url = "https://libraries.minecraft.net/")
}
}
includeBuild("build-logic")
include(":container:fabric")
include(":container:launchwrapper")
include(":container:modlauncher8")
include(":container:modlauncher9")
include(":stage0:common")
include(":stage0:fabric")
include(":stage0:launchwrapper")
include(":stage0:modlauncher")
include(":stage0:modlauncher8")
include(":stage0:modlauncher9")
include(":stage1:common")
include(":stage1:fabric")
include(":stage1:launchwrapper")
include(":stage1:modlauncher")
include(":stage1:modlauncher8")
include(":stage1:modlauncher9")
include(":stage2:common")
include(":stage2:fabric")
include(":stage2:launchwrapper")
include(":stage2:launchwrapper-legacy")
include(":stage2:modlauncher")
include(":stage2:modlauncher8")
include(":stage2:modlauncher9")
include(":stage2:modlauncher9:compatibility")
include(":stage2:modlauncher9:forge37")
include(":stage2:modlauncher9:forge40")
include(":stage2:modlauncher9:forge41")
include(":stage2:modlauncher9:forge49")
include(":stage2:modlauncher9:neoforge1")
include(":stage2:modlauncher9:neoforge4")
include(":stage2:modlauncher9:modlauncher10")
include(":stage2:modlauncher9:modlauncher11")
include(":mixin")
include(":integrationTest:common")
include(":integrationTest:fabric")
include(":integrationTest:launchwrapper")