blob: a9bb02f4e894749aafbd436d082528f8900cbf23 (
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
|
// Add your dependencies here
dependencies {
compile("com.github.GTNewHorizons:GalacticGregGT5:master-SNAPSHOT:dev")
compile files("dependencies/TecTech-1.7.10-4.10.4-local-b6491dd.jar")
compileOnly("com.github.GTNewHorizons:AppleCore:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:TinkersGregworks:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT:api") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Railcraft:master-SNAPSHOT:api") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:EnderIO:master-SNAPSHOT:api") {
transitive = false
}
compileOnly("li.cil.oc:OpenComputers:MC1.7.10-1.7.5.1356:api") {
transitive = false
}
compileOnly("com.mod-buildcraft:buildcraft:7.1.23:dev") {
transitive = false
}
runtime("com.github.GTNewHorizons:Yamcl:master-SNAPSHOT:dev")
}
|