aboutsummaryrefslogtreecommitdiff
path: root/dependencies.gradle
blob: b58c097e218c70eabd0097bbca32325de1daf392 (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
// Add your dependencies here

dependencies {
    compile("com.github.GTNewHorizons:bartworks:master-SNAPSHOT:dev")
    compile("com.github.GTNewHorizons:GTplusplus:master-SNAPSHOT:dev")
    compile("com.github.GTNewHorizons:GT5-Unofficial:master-SNAPSHOT:dev")
    compile("com.github.GTNewHorizons:NewHorizonsCoreMod:master-SNAPSHOT:dev")

    compileOnly("com.github.GTNewHorizons:VisualProspecting:master-SNAPSHOT:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:ForestryMC:master-SNAPSHOT:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Railcraft:master-SNAPSHOT:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:EnderIO:master-SNAPSHOT:dev") {
        transitive = false
    }

    compileOnly("com.mod-buildcraft:buildcraft:7.1.23:dev") {
        transitive = false
    }
    compileOnly("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev") {
        transitive = false
    }
}