forked from TeamGalacticraft/Galacticraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (27 loc) · 850 Bytes
/
settings.gradle.kts
File metadata and controls
28 lines (27 loc) · 850 Bytes
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
pluginManagement {
repositories {
mavenLocal {
content {
includeGroup("dev.galacticraft")
includeGroup("dev.galacticraft.mojarn")
}
}
maven("https://maven.fabricmc.net/") {
name = "Fabric"
content {
includeGroup("net.fabricmc")
includeGroup("net.fabricmc.fabric-api")
includeGroup("fabric-loom")
}
}
maven("https://repo.terradevelopment.net/repository/maven-releases/") {
// https://maven.galacticraft.net/repository/maven-releases
content {
includeGroup("dev.galacticraft")
includeGroup("dev.galacticraft.mojarn")
}
}
gradlePluginPortal()
}
}
rootProject.name = "Galacticraft"