-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
44 lines (42 loc) · 1.07 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
pluginManagement {
repositories {
maven {
name = "Fabric"
url = "https://maven.fabricmc.net/"
}
maven {
name = 'Architectury'
url "https://maven.architectury.dev/"
}
maven {
name = "Jitpack"
url = "https://jitpack.io"
}
maven {
name = "Nyan Maven"
url = "https://maven.hendrixshen.top"
}
maven {
url = 'https://maven.nova-committee.cn/releases'
}
maven { url 'https://maven.minecraftforge.net' }
maven { url 'https://repo.spongepowered.org/repository/maven-public' }
maven { url 'https://maven.parchmentmc.org' }
mavenCentral()
gradlePluginPortal()
}
}
def versions = Arrays.asList(
"1.18.2",
"1.19.2",
"1.19.3",
"1.19.4",
"1.20.1",
"1.20.4",
)
for (String version : versions) {
include(":$version")
def proj = project(":$version")
proj.projectDir = file("versions/$version")
}
//include(":wrapper")