-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdependencies.gradle
More file actions
138 lines (110 loc) · 4.16 KB
/
dependencies.gradle
File metadata and controls
138 lines (110 loc) · 4.16 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
dependencies {
implementation(project(":modules:CTNH-Bio"))
jarJar(project(":modules:CTNH-Bio")){ transitive = false }
implementation(project(":modules:CTPP"))
jarJar(project(":modules:CTPP")){ transitive = false }
modImplementation(project(":modules:CTNH-Lib")){ transitive = false }
jarJar(project(":modules:CTNH-Lib")){ transitive = false }
implementation(project(":modules:CTNH-Energy"))
jarJar(project(":modules:CTNH-Energy")){ transitive = false }
implementation(project(":modules:CTNH-Mana"))
jarJar(project(":modules:CTNH-Mana")){ transitive = false }
implementation(project(":modules:CTNH-Astral"))
jarJar(project(":modules:CTNH-Astral")){ transitive = false }
jarJar(project(":modules:GregTech-Modern")){ transitive = false }
//modImplementation("extra-mods:create_connected-26.1-all")
jarJar("extra-mods:scg-ctnh:1.1.1")
jarJar("extra-mods:kallfix_sub-1.0:1.0")
runtimeOnly(ctnh.graphlib)
// AE2
modImplementation(ctnh.ae2)
modImplementation(ctnh.guideme)
modImplementation(ctnh.ae2cs)
modImplementation(ctnh.glodium)
modImplementation(ctnh.eae)
modImplementation(ctnh.omnicells)
// Create addons
modImplementation(ctnh.createmetallurgy)
modImplementation(ctnh.createvintage)
modImplementation(ctnh.createliquidfuel)
modImplementation(ctnh.createnewage)
modImplementation(ctnh.creatediesel)
modImplementation(ctnh.farmersdelight)
modImplementation(ctnh.clothconfig)
modImplementation(ctnh.ecologics)
modImplementation(ctnh.mynethersdelight)
modImplementation(ctnh.createcafe)
modImplementation(ctnh.createoreexcavation)
// season
modImplementation(ctnh.glitchcore)
modImplementation(ctnh.ecliptic)
// Curios
modCompileOnly(variantOf(forge.curios) { classifier("api") })
// ars
modImplementation(ctnh.geckolib)
modImplementation(ctnh.arsnouveau)
// ad
modImplementation(ctnh.resourcefullib)
modImplementation(ctnh.resourcefulconfig)
modImplementation(ctnh.botarium)
modImplementation(ctnh.adastra)
modImplementation(ctnh.aeroblender)
modImplementation(ctnh.terrablender)
modImplementation(ctnh.aether)
modImplementation(ctnh.deepaether)
modImplementation(ctnh.architecturyapi)
modImplementation(ctnh.ftblibrary)
modImplementation(ctnh.ftbteams)
modImplementation(ctnh.ftbchunks)
modImplementation(ctnh.ftbultimine)
modImplementation(ctnh.patchouli)
modImplementation(ctnh.botania)
// EnderIO
modCompileOnly(variantOf(ctnh.eio) { classifier("api") })
modImplementation(ctnh.eio)
modImplementation(ctnh.legendary)
// Blood Magic
modImplementation(ctnh.bloodmagic)
modImplementation(ctnh.extrabotany)
modImplementation(ctnh.mythicbotany)
annotationProcessor(ctnh.libx)
modImplementation(ctnh.libx)
// Apotheosis
modImplementation(ctnh.apotheosis)
modImplementation(ctnh.attributelib)
modImplementation(ctnh.placebo)
// Twilight forest
modImplementation(ctnh.twilightforest)
// Hostile Neural NetWork
modImplementation(ctnh.hostile)
// Biomancy
modImplementation(ctnh.biomancy)
modImplementation(ctnh.biofactory)
// Re-Avaritia
modImplementation(ctnh.avaritia)
// tconstruct
modImplementation(ctnh.tconstruct)
modImplementation(ctnh.mantle)
modImplementation(ctnh.javd)
modImplementation(ctnh.trenzalore)
modCompileOnly(ctnh.sophisticatedcore)
modImplementation(ctnh.sophisticatedbackpacks)
modImplementation(ctnh.sophisticatedstorage)
modImplementation(ctnh.alexscaves)
modImplementation(ctnh.citadel)
modLocalRuntime(ctnh.curios)
modLocalRuntime(ctnh.constructionwand)
// Jack's Economy
modImplementation(ctnh.jackseconomy)
modLocalRuntime(ctnh.curios)
modImplementation(ctnh.lendercataclysm)
modImplementation(ctnh.angelblock)
modImplementation(ctnh.angelring)
// GT Portal
modImplementation(ctnh.gtportal)
// Functional Storage (needs Titanium)
modImplementation(ctnh.titanium)
modImplementation(ctnh.functionalstorage)
// Immersive Aircraft
modImplementation(ctnh.immersiveaircraft)
}