-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
33 lines (32 loc) · 940 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
pluginManagement {
repositories {
mavenCentral()
mavenLocal()
maven {
name = "FabricMC"
url = uri("https://maven.fabricmc.net/")
content {
includeGroup "net.fabricmc"
includeGroup "net.fabricmc.unpick"
}
}
maven {
name = "HalfOf2"
url = uri("https://storage.googleapis.com/devan-maven/")
content {
includeGroup "net.devtech"
includeGroup "io.github.astrarre"
includeGroup "io.github.astrarre.amalgamation"
includeGroup "amalgamation-minecraft"
includeGroup "net.fabricmc"
}
}
maven {
url = uri("https://maven.hydos.cf/releases")
content {
includeGroup "io.github.coolmineman"
}
}
}
}
rootProject.name = 'testmod'