-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdependencies.gradle
More file actions
50 lines (41 loc) · 2.71 KB
/
dependencies.gradle
File metadata and controls
50 lines (41 loc) · 2.71 KB
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
// Add your dependencies here
dependencies {
implementation("com.github.GTNewHorizons:GTNHLib:0.9.48:dev")
implementation('com.github.GTNewHorizons:Baubles-Expanded:2.2.11-GTNH:dev')
compileOnly('com.github.GTNewHorizons:GT5-Unofficial:5.09.52.409:dev') {exclude module: "Baubles" }
implementation('com.github.GTNewHorizons:ForbiddenMagic:0.9.15-GTNH:dev') {exclude module: "Baubles" }
implementation('com.github.GTNewHorizons:twilightforest:2.7.26:dev')
implementation('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') {transitive=false}
implementation('com.github.GTNewHorizons:NotEnoughItems:2.8.86-GTNH:dev')
compileOnly("com.github.GTNewHorizons:Postea:1.2.5:dev")
devOnlyNonPublishable('com.github.GTNewHorizons:ThaumicBoots:1.5.9:dev') {transitive=false}
compileOnly('com.github.GTNewHorizons:ThaumicBases:1.9.12:dev') {transitive=false}
compileOnly('com.github.GTNewHorizons:ForgeMultipart:1.7.3:dev') {transitive=false}
compileOnly('com.github.GTNewHorizons:Botania:1.13.16-GTNH:api') {transitive=false}
compileOnly('com.github.GTNewHorizons:CraftTweaker:3.4.6:dev') {transitive=false}
compileOnly('com.github.GTNewHorizons:MagicBees:2.10.7-GTNH:api') {transitive=false}
compileOnly('com.github.GTNewHorizons:TinkersConstruct:1.14.50-GTNH:dev') {transitive=false}
compileOnly('com.github.GTNewHorizons:MagicBees:2.10.7-GTNH:api') {transitive=false}
compileOnly('com.github.GTNewHorizons:TinkersConstruct:1.14.50-GTNH:dev') {transitive=false}
compileOnly('com.github.GTNewHorizons:Tainted-Magic:7.7.7-GTNH:dev') {transitive=false}
compileOnly(deobfCurse('enviromine-230236:2269710'))
compileOnly('org.projectlombok:lombok:1.18.34')
annotationProcessor('org.projectlombok:lombok:1.18.34')
runtimeOnly('com.github.GTNewHorizons:CodeChickenCore:1.4.12:dev')
runtimeOnly('com.github.GTNewHorizons:Railcraft:9.17.25:dev') {transitive=false}
// Adds various useful features
runtimeOnlyNonPublishable("com.github.GTNewHorizons:EnderCore:0.5.12:dev") { transitive = false }
// Speeds up startup
runtimeOnlyNonPublishable("com.github.GTNewHorizons:CoreTweaks:0.3.4.0-GTNH:dev")
runtimeOnlyNonPublishable("com.github.GTNewHorizons:waila:1.19.22:dev")
// For /nbtEdit command
//devOnlyNonPublishable("com.github.GTNewHorizons:ServerUtilities:2.2.20")
// For cluster testing and other gt5u integration
// runtimeOnlyNonPublishable('com.github.GTNewHorizons:GT5-Unofficial:5.09.52.409:dev') {
// exclude module: "Baubles"
// }
var tasks = project.gradle.startParameter.taskNames
if (tasks.contains("runClient17") || tasks.contains("runClient21")) {
runtimeOnlyNonPublishable('com.github.GTNewHorizons:Angelica:2.1.16:dev')
}
}