-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathbuild.gradle
273 lines (248 loc) · 11.5 KB
/
build.gradle
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.7-SNAPSHOT" apply false
id "com.matthewprenger.cursegradle" version "1.4.0"
id "com.modrinth.minotaur" version "2.+"
id "com.github.johnrengelman.shadow" version "7.1.2" apply false
}
architectury {
minecraft = rootProject.minecraft_version
}
subprojects {
apply plugin: "dev.architectury.loom"
apply plugin: "com.matthewprenger.cursegradle"
apply plugin: "com.modrinth.minotaur"
apply plugin: "com.github.johnrengelman.shadow"
loom {
silentMojangMappingsLicense()
}
dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
// The following line declares the mojmap mappings, you may use other mappings as well
mappings loom.layered() {
it.officialMojangMappings {
setNameSyntheticMembers(false)
}
it.parchment("org.parchmentmc.data:parchment-${rootProject.parchment_version}")
}
}
var env = System.getenv()
var modLoader = name
var changelogFile = rootProject.file("changelog.md")
var changelogText = changelogFile.exists() ? changelogFile.text : ""
if (env.MODRINTH_TOKEN) {
modrinth {
projectId = "every-compat"
uploadFile = tasks.remapJar
additionalFiles.add(tasks.remapSourcesJar)
gameVersions = [rootProject.minecraft_version]
loaders = [modLoader]
changelog = changelogText
if (modLoader == "fabric") {
versionName = mod_version + '-fabric'
dependencies {
required.project "fabric-api"
required.project "moonlight"
}
} else {
versionName = mod_version + '-forge'
dependencies {
required.project "moonlight"
}
}
}
}
if (env.CURSEFORGE_TOKEN) {
curseforge {
apiKey = env.CURSEFORGE_TOKEN
project {
id = rootProject.project_id
changelog = changelogText
changelogType = 'markdown'
releaseType = 'release'
addGameVersion rootProject.minecraft_version
addGameVersion modLoader.capitalize()
mainArtifact(tasks.remapJar)
if (modLoader == "fabric") {
relations {
requiredDependency "fabric-api"
requiredDependency "selene"
optionalDependency("another-furniture")
optionalDependency("architects-palette-fabric")
optionalDependency("backpacked")
optionalDependency("building-but-better")
optionalDependency("camp-chair")
optionalDependency("chipped")
optionalDependency("clutter")
optionalDependency("create-fabric")
optionalDependency("decorative-blocks")
optionalDependency("dramatic-doors")
optionalDependency("exlines-awnings")
optionalDependency("exlines-bark-carpets")
optionalDependency("farmers-delight-fabric")
optionalDependency("farmers-delight-refabricated")
optionalDependency("friends-and-foes")
optionalDependency("furnish")
optionalDependency("handcrafted")
optionalDependency("hearth-and-home")
optionalDependency("infinitybuttons")
optionalDependency("lightmans-currency-fabric")
optionalDependency("macaws-bridges")
optionalDependency("macaws-doors")
optionalDependency("macaws-fences-and-walls")
optionalDependency("macaws-furniture")
optionalDependency("macaws-lights-and-lamps")
optionalDependency("macaws-paths-and-pavings")
optionalDependency("macaws-roofs")
optionalDependency("macaws-trapdoors")
optionalDependency("macaws-windows")
optionalDependency("mighty-mail-fabric")
optionalDependency("missing-wilds")
optionalDependency("more-crafting-tables-lieonlion")
optionalDependency("quark")
optionalDependency("regions-unexplored")
// optionalDependency("the-twilight-forest") //!! NOT AVAILABLE
optionalDependency("table-top-craft-fabric")
optionalDependency("twigs")
optionalDependency("valhelsia-furniture")
optionalDependency("variant-vanilla-blocks")
optionalDependency("villagersplus-fabric")
optionalDependency("wooden-hoppers")
}
} else {
relations {
requiredDependency("selene")
optionalDependency("sawmill")
optionalDependency("absent-by-design")
optionalDependency("another-furniture")
optionalDependency("architects-palette")
optionalDependency("backpacked")
optionalDependency("boatload")
optionalDependency("buildersaddition")
optionalDependency("building-but-better")
optionalDependency("camp-chair")
optionalDependency("chipped")
optionalDependency("corail-pillar")
optionalDependency("create")
optionalDependency("dawn-of-time")
optionalDependency("decorative-blocks")
optionalDependency("decoration-delight")
optionalDependency("domum-ornamentum")
optionalDependency("dramatic-doors")
optionalDependency("exlines-bark-carpets")
optionalDependency("farmers-delight")
optionalDependency("friends-and-foes-forge")
optionalDependency("functional-storage")
optionalDependency("furnish")
optionalDependency("handcrafted")
optionalDependency("hearth-and-home")
optionalDependency("infinitybuttons")
optionalDependency("just-a-raft-mod")
optionalDependency("lightmans-currency")
optionalDependency("macaws-bridges")
optionalDependency("macaws-doors")
optionalDependency("macaws-fences-and-walls")
optionalDependency("macaws-furniture")
optionalDependency("macaws-lights-and-lamps")
optionalDependency("macaws-paths-and-pavings")
optionalDependency("macaws-roofs")
optionalDependency("macaws-trapdoors")
optionalDependency("macaws-windows")
optionalDependency("mighty-mail")
optionalDependency("missing-wilds-forge")
optionalDependency("more-chest-variants-lieonlion")
optionalDependency("more-crafting-tables-for-forge")
optionalDependency("more-crafting-tables-lieonlion")
optionalDependency("mosaic-carpentry")
optionalDependency("mrcrayfish-furniture-mod")
optionalDependency("pokecube-aoi")
optionalDependency("premium-wood")
// optionalDependency("productivebees")
optionalDependency("quark")
optionalDependency("redeco")
optionalDependency("regions-unexplored")
optionalDependency("storage-drawers")
optionalDependency("timber-frames")
optionalDependency("the-graveyard-forge")
optionalDependency("the-twilight-forest")
optionalDependency("table-top-craft")
optionalDependency("tropicraft")
optionalDependency("twigs")
optionalDependency("valhelsia-furniture")
optionalDependency("variant-crafting-tables")
optionalDependency("variant-vanilla-blocks")
optionalDependency("villagersplus-forge")
optionalDependency("woodster")
optionalDependency("woodworks")
optionalDependency("workshop-for-handsome-adventurer")
optionalDependency("xercamod")
}
}
}
}
}
}
allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
apply plugin: "maven-publish"
archivesBaseName = rootProject.mod_id
version = rootProject.mod_version
group = rootProject.maven_group
repositories {
mavenLocal()
flatDir {
dirs 'mods'
}
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
maven { url "https://maven.parchmentmc.org" }
maven {
url = "https://www.cursemaven.com"
allowInsecureProtocol = true
}
maven { url = "https://api.modrinth.com/maven" }
maven { url = "https://mvn.devos.one/snapshots/" }
maven { url = "https://mvn.devos.one/releases" } // Porting Lib Releases
maven { url "https://maven.shedaniel.me/" } // Cloth Config
// Required for Create
maven {
name "tterrag maven"
url "https://maven.tterrag.com/" // Create & Several Dependencies
}
maven { // Forge Config API Port
name = "Fuzs Mod Resources"
url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
}
maven { // Reach Entity Attributes
url = "https://maven.jamieswhiteshirt.com/libs-release"
content { includeGroup("com.jamieswhiteshirt") }
}
maven { // CC: Tweaked
url "https://squiddev.cc/maven"
}
maven { // Unknown
name = 'Ladysnake Mods'
url = 'https://maven.ladysnake.org/releases'
}
maven { // JEI
name = "Jared's maven"
url = "https://maven.blamejared.com/"
}
maven { // Botania & FALLBACK for JEI
name = "ModMaven"
url = "https://modmaven.dev"
}
// END -------------
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.release = 17
}
java {
withSourcesJar()
}
}