-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
34 lines (31 loc) · 953 Bytes
/
settings.gradle.kts
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
pluginManagement {
repositories {
maven("https://maven.fabricmc.net/") {
name = "Fabric"
content {
includeGroup("fabric-loom")
includeGroup("net.fabricmc")
includeGroup("net.fabricmc.fabric-api")
}
}
maven ("https://maven.neoforged.net/releases") {
name = "NeoForge"
content {
includeGroup("codechicken")
includeGroup("net.minecraftforge")
includeGroup("net.neoforged")
includeGroup("net.neoforged.gradle")
includeGroup("net.neoforged.gradle.userdev")
}
}
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "MinecraftMods"
fun mod(name: String) {
include(":${name}", ":${name}:Common", ":${name}:Fabric", ":${name}:Forge")
}
mod("GamemodeOverhaul")
//mod("Snowy")
//mod("Template")