-
Notifications
You must be signed in to change notification settings - Fork 20
/
settings.gradle
35 lines (31 loc) · 965 Bytes
/
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
pluginManagement {
repositories {
maven {
name = "Fabric"
url = "https://maven.fabricmc.net/"
}
maven {
name = "Architectury"
url = "https://maven.architectury.dev/"
}
//mavenCentral()
gradlePluginPortal()
// NOTE: Forge is no longer supported and the build has been disabled
// See: https://github.com/pcal43/fastback/issues/333
// maven {
// name = 'NeoForged'
// url = 'https://maven.neoforged.net/releases'
//}
// architectury-loom still demands this for some reason
maven {
name = "Forge"
url = "https://maven.minecraftforge.net/"
}
}
}
rootProject.name = "fastback"
include(":common")
include(":fabric")
// NOTE: Forge is no longer supported and the build has been disabled
// See: https://github.com/pcal43/fastback/issues/333
// include(":forge")