-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
421 lines (381 loc) · 18.1 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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
import groovy.json.JsonOutput
import org.apache.tools.ant.filters.ReplaceTokens
buildscript {
repositories {
gradlePluginPortal()
maven {
name 'MinecraftForge'
url 'https://maven.minecraftforge.net/'
}
maven {
name 'Garden of Fancy'
url 'https://maven.gofancy.wtf/releases'
}
//fallback for fancygradle maven
//mavenLocal()
maven {
name 'Sponge'
url 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
url 'https://maven.cleanroommc.com'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:5.+'
classpath 'org.ajoberstar.grgit:grgit-gradle:3.1.1'
classpath group: 'wtf.gofancy.fancygradle', name: 'wtf.gofancy.fancygradle.gradle.plugin', version: '1.1.+'
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
}
repositories.each {
if (it instanceof MavenArtifactRepository && it.url.toString() == "https://files.minecraftforge.net/maven") {
it.url = "https://maven.minecraftforge.net"
}
}
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.spongepowered.mixin'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: org.ajoberstar.grgit.gradle.GrgitPlugin
apply plugin: 'wtf.gofancy.fancygradle'
//// Project Settings ////
// http://maven.apache.org/guides/mini/guide-naming-conventions.html
group = "${project.maven_group}" // groupId
archivesBaseName = "${project.jar_name}" // artifactId - modid
version = "${project.mc_version}-${project.mod_version}"
//// Project Settings ////
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
minecraft {
// The mappings can be changed at any time, and must be in the following format.
// snapshot_YYYYMMDD Snapshot are built nightly.
// stable_# Stables are built at the discretion of the MCP team.
// Use non-default mappings at your own risk. they may not always work.
// Simply re-run your setup task after changing the mappings to update your workspace.
//mappings channel: 'snapshot', version: '20171003-1.12'
mappings channel: project.mappings_channel, version: "${project.mappings_version}-${project.mappings_mc_version}"
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
accessTransformer = file('src/main/resources/META-INF/ancientspellcraft_at.cfg')
def args = ["-Dmixin.debug.export=true",
'-Dmixin.hotSwap=true',
'-Dmixin.checks.interfaces=true',
'--username', 'WinDanesz', '--user', 'WinDanesz', '--uuid', '7faee354-8c60-4f5c-9862-fc0ce5f7f575',
'-Dfml.coreMods.load=' + coremod_plugin_class_name]
// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
client {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
// Recommended logging level for the console
property 'forge.logging.console.level', 'info'
}
server {
// Recommended logging data for a userdev environment
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
// Recommended logging level for the console
property 'forge.logging.console.level', 'info'
}
}
}
repositories {
google()
mavenCentral()
maven {
url = uri('https://www.cursemaven.com')
content {
includeGroup 'curse.maven'
}
}
maven {
name = 'Modrinth'
url = uri('https://api.modrinth.com/maven')
content {
includeGroup 'maven.modrinth'
}
}
maven {
name = 'Sponge'
url = uri('https://repo.spongepowered.org/maven')
}
maven {
url = uri('https://maven.blamejared.com')
}
maven {
url = uri('https://m2.dv8tion.net/releases')
}
maven { url = 'https://maven.cleanroommc.com' }
maven {
url = uri('https://jitpack.io')
}
flatDir {
// location for sources
dirs 'build/libs'
}
// For local development
flatDir {
dirs '../Wizardry/build/libs'
}
}
dependencies {
//// MC version ////
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft "net.minecraftforge:forge:${project.mc_version}-${project.forge_version}"
//// MC version ////
// CurseForge Maven
// Currently unused
// CurseForge Maven usage: https://support.curseforge.com/en/support/solutions/articles/9000197321-curseforge-api
// Format: compile '{projectSlug}:{mavenArtifact}:{mavenVersion}:{projectFileNameTag}'
// CurseMaven - https://www.cursemaven.com/
// Format: curse.maven:<descriptor>-<projectid>:<fileid>
// Fields:
// curse.maven -> Required. Marks the dependency to be resolved by the curse maven website.
// <descriptor> -> Can be anything you want. This file downloaded will have this in it's name, so it's good to use this to show which files are what. A good practice would be to have this as the project slug.
// <projectid> -> The project id of the file you want to add as a dependency.
// <fileid> -> The file id of the file you want to add as a dependency.
// Test link: https://www.cursemaven.com/test/<projectid>/<fileid>/<Classifier?>
//// Dependencies ////
// For local development
// implementation fg.deobf("random_placeholder:ElectroblobsWizardry:4.3.12")
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
implementation fg.deobf("curse.maven:ElectroblobsWizardry-${wizardry_projectid}:${wizardry_fileid}")
implementation fg.deobf("curse.maven:baubles-${baubles_projectid}:${baubles_fileid}")
implementation fg.deobf("mezz.jei:jei_${mc_version}:${jei_version}")
implementation fg.deobf("curse.maven:artemislib-${artemislib_projectid}:${artemislib_fileid}")
implementation fg.deobf("curse.maven:antique-atlas-${antiqueatlas_projectid}:${antiqueatlas_fileid}")
implementation fg.deobf("curse.maven:MixinBooter-${mixinbooter_projectid}:${mixinbooter_fileid}")
implementation fg.deobf("curse.maven:WizardryUtils-${wizardryutils_projectid}:${wizardryutils_fileid}")
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
annotationProcessor 'org.ow2.asm:asm-debug-all:5.2'
annotationProcessor 'com.google.guava:guava:24.1.1-jre'
annotationProcessor 'com.google.code.gson:gson:2.8.6'
}
tasks.named('test', Test) {
useJUnitPlatform()
}
jar {
manifest {
attributes(["Maven-Artifact" : "${project.maven_group}:${project.archivesBaseName}:${project.version}",
"Specification-Title" : archivesBaseName,
"Specification-Vendor" : "WinDanesz",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : "${version}",
"Implementation-Vendor" : "WinDanesz",
"Implementation-Timestamp" : new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"Built-On-Java" : "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})",
'TweakClass' : "org.spongepowered.asm.launch.MixinTweaker",
"Built-On" : "${project.mc_version}-${project.forge_version}",
"FMLCorePlugin" : "com.windanesz.ancientspellcraft.core.ASLoadingPlugin",
"FMLCorePluginContainsFMLMod": true,
"FMLAT" : "ancientspellcraft_at.cfg",
"ForceLoadAsMod" : project.gradle.startParameter.taskNames[0] == "build",])
}
}
task sourceJar(type: Jar, dependsOn: classes) {
description = 'Creates a JAR containing the source code.'
classifier = 'sources'
from sourceSets.main.allSource
manifest {
attributes(["Maven-Artifact" : "${project.maven_group}:${project.archivesBaseName}:${project.version}",
"Specification-Title" : archivesBaseName,
"Specification-Vendor" : "${project.author}",
"Specification-Version" : "1",
"Implementation-Title" : archivesBaseName + '-sources',
"Implementation-Version" : "${project.mod_version}",
"Implementation-Vendor" : "${project.author}",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"Built-On-Java" : "${System.getProperty('java.vm.version')} (${System.getProperty('java.vm.vendor')})",
"Built-On" : "${project.mc_version}-${project.forge_version}"])
}
}
//// Project manifest data ////
// Example configuration to allow publishing using the maven-publish task
// This is the preferred method to reobfuscate your jar file
jar.finalizedBy('reobfJar')
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing
// publish.dependsOn('reobfJar')
// downloads the dependency sources from github into the libs folder
// Yes, I've forked some of them to properly tag their versions...
task downloadSources {
doLast {
mkdir "libs"
def wizardry = new File("libs/WizardrySrc-${wizardry_version}.zip")
new URL("https://github.com/Electroblob77/Wizardry/archive/v${wizardry_version}.zip").withInputStream { i -> wizardry.withOutputStream { it << i } }
def baubles = new File("libs/BaublesSrc-${baubles_version}.zip")
new URL("https://github.com/WinDanesz/Baubles/archive/${baubles_version}.zip").withInputStream { i -> baubles.withOutputStream { it << i } }
}
}
if (System.getenv('USE_ALPHAS').equals('true')) {
println 'getenv'
task setupGithubActions() {
def getVersion = {
//TAG-offset-hash
def raw = grgit.describe(longDescr: true, tags: true, match: ["${project.mc_version}-[0-9].[0-9].[0-9]", "${project.mc_version}-[0-9][0-9].[0-9][0-9].[0-9][0-9]", "${project.mc_version}-[0-9].[0-9][0-9].[0-9][0-9]", "${project.mc_version}-[0-9].[0-9].[0-9][0-9]", "${project.mc_version}-[0-9].[0-9][0-9].[0-9]", "${project.mc_version}-[0-9][0-9].[0-9].[0-9]"])
def desc = (raw == null ? '0.0-0-unknown' : grgit.describe(longDescr: true, tags: true, match: ["${project.mc_version}-[0-9].[0-9].[0-9]", "${project.mc_version}-[0-9][0-9].[0-9][0-9].[0-9][0-9]", "${project.mc_version}-[0-9].[0-9][0-9].[0-9][0-9]", "${project.mc_version}-[0-9].[0-9].[0-9][0-9]", "${project.mc_version}-[0-9].[0-9][0-9].[0-9]", "${project.mc_version}-[0-9][0-9].[0-9].[0-9]"])).split('-') as List
def hash = desc.remove(desc.size() - 1)
def offset = desc.remove(desc.size() - 1)
def tag = desc.join('-')
return "${tag}.${offset}".toString().replace("${project.mc_version}-", "") //Bake the response instead of making it dynamic
}
project.mod_version = getVersion();
version = project.mc_version + '-' + getVersion();
def getLastTag = {
def raw = grgit.describe(longDescr: true, tags: true)
def desc = (raw == null ? 'HEAD' : grgit.describe(longDescr: true, tags: true)).split('-') as List
desc.remove(desc.size() - 1)
desc.remove(desc.size() - 1)
def tag = desc.join('-')
return tag;
}
def rawLog = grgit.log(includes: ['HEAD'], excludes: [getLastTag()]);
def log = "";
for (org.ajoberstar.grgit.Commit commit : rawLog) {
log = log + "[`" + commit.abbreviatedId + "`](https://github.com/${project.github}/commit/" + commit.id + ") " + commit.shortMessage + " - " + commit.author.name + "\\n";
}
doLast {
exec {
commandLine "echo", "##[set-output name=jar_name;]${project.jar_name}";
}
if (project.hasProperty('curse_project_id')) {
exec {
commandLine "echo", "##[set-output name=curse_project_id;]${project.curse_project_id}";
}
exec {
commandLine "echo", "##[set-output name=curse_versions;]${project.curse_versions}";
}
if (project.hasProperty('curse_relations')) {
exec {
commandLine "echo", "##[set-output name=curse_relations;]${project.curse_relations}";
}
}
}
exec {
commandLine "echo", "##[set-output name=version;]${project.version}";
}
exec {
commandLine "echo", "##[set-output name=name;]${project.name}";
}
exec {
commandLine "echo", "##[set-output name=url;]${project.url}";
}
exec {
commandLine "echo", "##[set-output name=commitlog;]" + "{\"content\":\"" + (project.hasProperty('hook_content') ? project.hook_content : "") + "\",\"embeds\":[{\"author\":{\"name\":\"WinDanesz\",\"url\":\"https://www.curseforge.com/minecraft/mc-mods/ancient-spellcraft\",\"icon_url\":\"https://avatars.githubusercontent.com/u/31292708?s=48&v=4\"},\"title\":\"${project.mod_id}-alpha-${project.version}\",\"url\":\"https://github.com/${project.github}/releases/tag/alpha-${project.version}\",\"color\":14700288,\"description\":\"" + log + "\"}]}";
}
}
}
} else {
task setupGithubActions() {
doLast {
exec {
commandLine "echo", "##[set-output name=jar_name;]${project.jar_name}";
}
if (project.hasProperty('curse_project_id')) {
exec {
commandLine "echo", "##[set-output name=curse_project_id;]${project.curse_project_id}";
}
exec {
commandLine "echo", "##[set-output name=curse_versions;]${project.curse_versions}";
}
if (project.hasProperty('curse_relations')) {
exec {
commandLine "echo", "##[set-output name=curse_relations;]${project.curse_relations}";
}
}
}
exec {
commandLine "echo", "##[set-output name=version;]${project.version}";
}
exec {
commandLine "echo", "##[set-output name=name;]${project.name}";
}
exec {
commandLine "echo", "##[set-output name=url;]${project.url}";
}
}
}
version = "${project.mc_version}-${project.mod_version}"
}
processResources {
if (System.getenv('PROJECT_VERSION') != null) {
version = "${project.mc_version}-" + System.getenv('PROJECT_VERSION')
project.mod_version = System.getenv('PROJECT_VERSION')
}
// this will ensure that this task is redone when the versions change.
inputs.property "version", version.toString()
inputs.property "mcversion", project.mc_version.toString()
// Get the CREDITS.md and put it into the mcmod.info credits as json
File file = new File("$projectDir/CREDITS.md")
String fileContent = file.getText("UTF-8")
def credits = JsonOutput.toJson(fileContent).replaceAll('\\\\r', "")
// remove opening and closing double quotes
credits = credits.getAt(1..credits.length() - 2)
// replace tokens in mcmod.info, and pack.mcmeta
from(sourceSets.main.resources.srcDirs) {
include 'pack.mcmeta'
include 'mcmod.info'
// replace tokens in mcmod.info
expand 'version': version.toString(),
'mcversion': project.mc_version.toString(),
'modid': project.mod_id,
'name': project.name,
'description': project.description,
'url': project.url,
'update_url': project.update_url,
"credits": credits
}
duplicatesStrategy = 'include'
}
task replaceTokens(type: Sync) {
if (System.getenv('PROJECT_VERSION') != null) {
version = "${project.mc_version}-" + System.getenv('PROJECT_VERSION')
project.mod_version = System.getenv('PROJECT_VERSION')
}
// replace @TOKENS@ in main file
from sourceSets.main.java
inputs.property 'version', project.mc_version.toString()
filter(ReplaceTokens, tokens: [VERSION: version.toString()])
filter(ReplaceTokens, tokens: [MCVERSION: "${project.mc_version}".toString()])
filter(ReplaceTokens, tokens: [WIZARDRY_VERSION: "${project.wizardry_version}".toString()])
into "$buildDir/src"
}
compileJava {
source = replaceTokens.outputs
}
fancyGradle {
patches {
resources
coremods
asm
}
}
mixin {
add sourceSets.main, "ancientspellcraft.refmap.json"
disableAnnotationProcessorCheck()
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
groupId = project.maven_group
artifactId = project.jar_name.toLowerCase()
// version = "${project.mc_version}-" + System.getenv('PROJECT_VERSION')
project.mod_version = System.getenv('PROJECT_VERSION')
println "version: " + version
}
}
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/WinDanesz/AncientSpellcraft")
credentials {
username = System.getenv("GITHUB_USER")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}