forked from GregTechCEu/GregTech-Modern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
122 lines (96 loc) · 3.62 KB
/
dependencies.gradle
File metadata and controls
122 lines (96 loc) · 3.62 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
dependencies {
compileOnly(libs.jetbrains.annotations)
// LDLib
jarJar(modApi(forge.ldlib.get()))
// Registrate
jarJar(modApi(forge.registrate.get()))
// Configuration
jarJar(modApi(forge.configuration.get()))
// Mixin (& Extras)
annotationProcessor(variantOf(libs.mixin) { classifier("processor") })
compileOnly(annotationProcessor(forge.mixinExtras.common.get()))
jarJar(api(forge.mixinExtras.forge.get())).version {
require("[${forge.versions.mixinExtras.get()},)")
}
// Recipe Viewers
modCompileOnly(forge.bundles.jei)
modCompileOnly(forge.bundles.rei)
modCompileOnly(forge.emi)
// WAILA-likes
modCompileOnly(forge.theoneprobe)
modCompileOnly(forge.jade)
// Curios
modCompileOnly(variantOf(forge.curios) { classifier("api") })
// AE2
modCompileOnly(forge.ae2)
modCompileOnly(forge.ae2wtlib)
// Create
modCompileOnly(forge.ponder)
modCompileOnly(variantOf(forge.create) { classifier("slim") })
modCompileOnly(forge.flywheel.forge.api)
// KJS
modCompileOnly(forge.kubejs)
modCompileOnly(forge.architectury)
modCompileOnly(forge.rhino)
// Shimmer
modCompileOnly(forge.shimmer)
modCompileOnly(forge.embeddium)
modCompileOnly(forge.oculus)
modCompileOnly(forge.modernfix)
// Teams
modCompileOnly(forge.ftblibrary)
modCompileOnly(forge.ftbteams)
modCompileOnly(forge.ftbquests)
modCompileOnly(forge.resourcefullib)
modCompileOnly(forge.argonauts)
modCompileOnly(forge.heracles)
// Maps
modCompileOnly(forge.ftbchunks)
modCompileOnly(forge.xaerosminimap)
modCompileOnly(forge.xaerosworldmap)
modCompileOnly(forge.journeymap.api)
modCompileOnly(forge.journeymap.forge)
// GameStages
modCompileOnly(forge.gamestages)
// CC: Tweaked
modCompileOnly(forge.cc.tweaked.core.api)
modCompileOnly(forge.cc.tweaked.forge.api)
// Standard runtime mods //
modLocalRuntime(forge.jade)
modLocalRuntime(forge.ae2)
modLocalRuntime(forge.spark)
modLocalRuntime(forge.modernfix)
// Runtime Recipe Viewers - uncomment whichever one you want to use //
modLocalRuntime(forge.emi)
// modLocalRuntime(forge.jei.forge.impl)
// modLocalRuntime(forge.bundles.rei.runtime)
// Client-only runtime mods //
modClientLocalRuntime(forge.embeddium)
modClientLocalRuntime(forge.oculus)
renderNurseCfg(libs.renderNurse)
//////////////////////////////////////////////////////
// Runtime mods for dev testing with unclean client //
//////////////////////////////////////////////////////
modExtraLocalRuntime(forge.javd)
modExtraLocalRuntime(forge.trenzalore)
modExtraLocalRuntime(forge.curios)
// modExtraLocalRuntime(forge.worldstripper)
// modExtraLocalRuntime(forge.cc.tweaked.forge.impl) for some reason this breaks create
modExtraLocalRuntime(forge.bundles.kjs)
modExtraLocalRuntime(forge.ftblibrary)
modExtraLocalRuntime(forge.ftbteams)
modExtraLocalRuntime(forge.ftbquests)
modExtraLocalRuntime(forge.heracles)
modExtraLocalRuntime(forge.resourcefullib)
// modExtraLocalRuntime(forge.xaerosminimap)
// modExtraLocalRuntime(forge.xaerosworldmap)
// modExtraLocalRuntime(forge.journeymap.forge)
// modExtraLocalRuntime(forge.ftbchunks)
modExtraLocalRuntime(forge.gamestages)
modExtraLocalRuntime(forge.bookshelf)
modExtraLocalRuntime(forge.kotlinforforge)
modExtraLocalRuntime(forge.observable)
modExtraLocalRuntime(forge.ponder)
modExtraLocalRuntime(variantOf(forge.create) { classifier("slim") })
modExtraLocalRuntime(forge.flywheel.forge)
}