aboutsummaryrefslogtreecommitdiff
path: root/dependencies.gradle
blob: a51aa1a909b1732bda2a8e8fb18a904f34372a0e (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// NOTE: Using explicit tags now instead of master-SNAPSHOT. (READ: Don't use master-SNAPSHOT anymore!!!)
// That means if you are depending on a change in a dependency, you need to tag the dependency
// and update the pinned tag here.  This _should_ allow for more reproducible historical builds, while
// also being more explicit about what is depended on.

dependencies {
    compile("com.github.GTNewHorizons:StructureLib:1.1.0:dev")
    compile("com.github.GTNewHorizons:NotEnoughItems:2.2.19-GTNH:dev")
    compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.3:dev")
    compile("com.github.GTNewHorizons:waila:1.5.18:dev")

    compile("com.github.GTNewHorizons:Hodgepodge:1.6.23:dev")

    compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev")

    compileOnly("com.github.GTNewHorizons:EnderCore:0.2.6:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.5:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:gendustry:1.6.5.4-GTNH:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Railcraft:9.13.6:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.39-GTNH:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:AppleCore:3.1.9:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.0.13-GTNH:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:harvestcraft:1.0.12-GTNH:dev") {
        transitive = false
    }
    compile("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-92-GTNH:dev") {
        transitive = false
    }
    compile("com.github.GTNewHorizons:Chisel:2.10.8-GTNH:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.29:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:BuildCraft:7.1.27:dev") {
        transitive = false
    }
    compileOnly("commons-io:commons-io:2.4") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Translocators:1.1.2.19:dev") {
        transitive = false
    }
    compileOnly("curse.maven:cofh-core-69162:2388751") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Nuclear-Control:2.4.8:dev") {
        transitive = false
    }
    compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") {
        transitive = false
    }
    compileOnly("com.github.GTNewHorizons:Avaritia:1.22:dev") {
        transitive = false
    }
    compileOnly("com.google.auto.value:auto-value-annotations:1.8.2") {
        transitive = false
    }
    annotationProcessor("com.google.auto.value:auto-value:1.8.2")

    testImplementation(platform('org.junit:junit-bom:5.8.2'))
    testImplementation('org.junit.jupiter:junit-jupiter')
}