blob: 8e98ef095c39fa494bc9470cd61f5ae6e73b7476 (
plain)
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
|
// Add any additional repositories for your dependencies here
repositories {
maven {
name = "ic2"
url = "https://maven.ic2.player.to/"
metadataSources {
mavenPom()
artifact()
}
}
maven {
name = "chickenbones"
url = "https://nexus.covers1624.net/repository/maven-hosted/"
metadataSources {
mavenPom()
artifact()
}
}
maven { // EnderIO & EnderCore
name = 'tterrag Repo'
url = "https://maven.tterrag.com"
}
ivy { // For appeng:appliedenergistics2 only
name = 'gtnh_download_source'
artifactPattern("http://downloads.gtnewhorizons.com/Mods_for_Jenkins/[module]-[revision].[ext]")
metadataSources {
artifact()
}
}
maven {
url "https://cursemaven.com"
}
maven {
name = "jitpack.io"
url = "https://jitpack.io"
}
}
|