generated from AzureDoom/AzureLib-MultiLoader-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
119 lines (106 loc) · 4.55 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
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
plugins {
id 'fabric-loom' version '1.4-SNAPSHOT' apply(false)
id 'net.neoforged.gradle' version '[6.0,6.2)' apply(false)
id 'org.spongepowered.gradle.vanilla' version '0.2.1-SNAPSHOT' apply(false)
id("org.spongepowered.mixin") version "0.7-SNAPSHOT" apply(false)
}
subprojects {
apply plugin: 'java'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
java.withSourcesJar()
java.withJavadocJar()
jar {
from(rootProject.file("LICENSE")) {
rename { "${it}_${mod_name}" }
}
manifest {
attributes([
"Specification-Title" : "tugkanses",
"Specification-Vendor" : "AzureDoom",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : project.mod_version,
"Implementation-Vendor" : "AzureDoom",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
sourcesJar {
from(rootProject.file("LICENSE")) {
rename { "${it}_${mod_name}" }
}
}
repositories {
mavenCentral()
maven {
name = 'Sponge / Mixin'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven {
name = 'BlameJared Maven (JEI / CraftTweaker / Bookshelf)'
url = 'https://maven.blamejared.com'
}
maven {
url = 'https://dl.cloudsmith.io/public/tslat/sbl/maven/'
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.getRelease().set(17)
}
processResources {
def expandProps = [
"mod_version" : project.mod_version,
"group" : project.group, //Else we target the task's group.
"minecraft_version" : project.minecraft_version,
"neo_version" : project.neo_version,
"loader_version_range" : project.loader_version_range,
"neo_version_range" : project.neo_version_range,
"minecraft_version_range" : project.minecraft_version_range,
"fabric_version" : project.fabric_version,
"fabric_loader_version" : project.fabric_loader_version,
"mod_name" : project.mod_name,
"mod_author" : project.mod_author,
"mod_id" : project.mod_id,
"mod_license" : project.mod_license,
"mod_description" : project.mod_description,
"mod_credits" : project.mod_credits,
"mod_logo" : project.mod_logo,
"mod_url" : project.mod_url,
"mod_issues" : project.mod_issues,
"mod_sources" : project.mod_sources,
]
filesMatching(['pack.mcmeta', 'fabric.mod.json', '*.mixins.json', 'META-INF/mods.toml']) {
expand expandProps
}
inputs.properties(expandProps)
doLast {
def jsonMinifyStart = System.currentTimeMillis()
def jsonMinified = 0
def jsonBytesSaved = 0
fileTree(dir: outputs.files.asPath, include: '**/*.json').each {
File file = it
jsonMinified++
def oldLength = file.length()
file.text = JsonOutput.toJson(new JsonSlurper().parse(file))
jsonBytesSaved += oldLength - file.length()
}
println('Minified ' + jsonMinified + ' json files. Saved ' + jsonBytesSaved + ' bytes. Took ' + (System.currentTimeMillis() - jsonMinifyStart) + 'ms.')
}
}
// Disables Gradle's custom module metadata from being published to maven. The
// metadata includes mapped dependencies which are not reasonably consumable by
// other mod developers.
tasks.withType(GenerateModuleMetadata).configureEach {
enabled = false
}
// Tells gradle to show 1000 errors instead of the default count of 100.
// See: https://stackoverflow.com/a/31905248
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
}