forked from Arborsm/ExtraSoundsNext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepositories.gradle
88 lines (88 loc) · 2.71 KB
/
repositories.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
repositories {
flatDir {
dir 'libs'
}
mavenLocal()
mavenCentral()
maven { url = "https://api.modrinth.com/maven" } // LazyDFU, Jade
maven { url = "https://maven.terraformersmc.com/releases/" } // Mod Menu, EMI
maven { url = "https://maven.shedaniel.me/" } // Cloth Config, REI
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
} // Curse Forge File
maven {
name = "Jared's maven"
url = "https://maven.blamejared.com/"
} // JEI
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "https://modmaven.dev"
} // JEI mirror, AE2
maven { url = "https://maven.parchmentmc.org" } // Parchment mappings
maven { url = "https://maven.quiltmc.org/repository/release" } // Quilt Mappings
maven { url = "https://maven.firstdarkdev.xyz/snapshots" } // LDLib
maven { // Flywheel
url = "https://maven.tterrag.com/"
content {
// need to be specific here due to version overlaps
includeGroup("com.jozufozu.flywheel")
includeGroup("com.tterrag.registrate")
includeGroup("com.simibubi.create")
}
}
maven { url = "https://maven.theillusivec4.top/" } // Curios
maven { // TOP
url "https://maven.k-4u.nl"
}
maven {
// saps.dev Maven (KubeJS and Rhino)
url = "https://maven.saps.dev/minecraft"
content {
includeGroup "dev.latvian.mods"
}
}
maven { url = "https://maven.jamieswhiteshirt.com/libs-release" } // Reach Entity Attributes
maven { url 'https://jitpack.io' } // Mixin Extras, Fabric ASM
maven {
url = "https://maven.tterrag.com/"
content {
includeGroup("com.tterrag.registrate")
includeGroup("com.simibubi.create")
includeGroup("com.jozufozu.flywheel")
}
}
maven {
name = "TerraformersMC"
url = "https://maven.terraformersmc.com/"
}
maven {
name = "Resourceful Bees Maven"
url = "https://maven.resourcefulbees.com/repository/maven-public/"
}
maven {
name = "SquidDev"
url = "https://squiddev.cc/maven"
content {
includeGroup("cc.tweaked.cobalt")
}
}
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
maven {
url "https://maven.su5ed.dev/releases"
}
maven {
name = 'Kotlin for Forge'
url = 'https://thedarkcolour.github.io/KotlinForForge/'
content { includeGroup "thedarkcolour" }
}
maven {
url "https://maven.impactdev.net/repository/development/"
}
}