forked from Nomifactory/GregTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepositories.gradle
More file actions
32 lines (31 loc) · 819 Bytes
/
repositories.gradle
File metadata and controls
32 lines (31 loc) · 819 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
29
30
31
32
// Add any additional repositories for your dependencies here
repositories {
maven {
name = "ic2, forestry"
setUrl("http://maven2.ic2.player.to/")
allowInsecureProtocol = true
}
maven { //JEI
name = "Progwml6 maven"
setUrl("https://dvs1.progwml6.com/files/maven/")
}
maven { //JEI fallback
name = "ModMaven"
setUrl("modmaven.k-4u.nl")
}
maven {
name = "tterrag maven"
setUrl("http://maven.tterrag.com/")
allowInsecureProtocol = true
}
maven {
name = "ChickenBones maven"
setUrl("http://chickenbones.net/maven/")
allowInsecureProtocol = true
}
maven {
name = "CoFH Maven"
setUrl("http://maven.covers1624.net")
allowInsecureProtocol = true
}
}