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

dependencies {
    api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.20:dev')
    api("com.github.GTNewHorizons:TecTech:5.2.4:dev")
    implementation("com.github.GTNewHorizons:TinkersConstruct:1.9.30-GTNH:dev")

    api("com.github.GTNewHorizons:GalacticGregGT5:1.0.8:dev") {
        exclude group:"com.github.GTNewHorizons", module:"bartworks"
    }

    api("com.github.GTNewHorizons:Galacticraft:3.0.68-GTNH:dev")
    api("com.github.GTNewHorizons:ModularUI:1.1.2:dev")

    api("com.github.GTNewHorizons:Avaritia:1.39:dev")

    compileOnly("TGregworks:TGregworks:1.7.10-GTNH-1.0.23:deobf") {transitive = false}
    compileOnly("com.github.GTNewHorizons:AppleCore:3.2.10:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:ForestryMC:4.6.7:api") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Railcraft:9.14.1:api") {
        transitive = false
    }

    compileOnly("com.github.GTNewHorizons:EnderIO:2.4.13:api") {
        transitive = false
    }

    compileOnly("com.github.GTNewHorizons:OpenComputers:1.9.4-GTNH:api") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:BuildCraft:7.1.33:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:ProjectRed:4.7.9-GTNH:dev") {
        transitive = false
    }
}