-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
196 lines (170 loc) · 7.03 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
import net.darkhax.curseforgegradle.TaskPublishCurseForge
import java.time.OffsetDateTime
import java.time.ZoneOffset
plugins {
id 'maven-publish'
alias libs.plugins.quilt.loom
id "com.modrinth.minotaur" version "2.+"
id 'org.cadixdev.licenser' version '0.6.1'
id 'net.darkhax.curseforgegradle' version '1.0.11'
}
archivesBaseName = project.mod_name
version = "${project.mod_version}+${libs.versions.minecraft.get()}"
group = project.mod_group
repositories {
// 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.
}
// All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>"
// See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work.
dependencies {
minecraft libs.minecraft
mappings variantOf(libs.quilt.mappings) { classifier 'intermediary-v2' }
// Replace the above line with the block below if you want to use Mojang mappings as your primary mappings, falling back on QM for parameters and Javadocs
/*
mappings loom.layered {
mappings "org.quiltmc:quilt-mappings:${libs.versions.quilt.mappings.get()}:intermediary-v2"
officialMojangMappings()
}
*/
modImplementation libs.quilt.loader
// QSL is not a complete API; You will need Quilted Fabric API to fill in the gaps.
// Quilted Fabric API will automatically pull in the correct QSL version.
modImplementation libs.quilted.fabric.api
// modImplementation libs.bundles.quilted.fabric.api // If you wish to use Fabric API's deprecated modules, you can replace the above line with this one
}
loom {
if (project.hasProperty('quilt_aws_enabled') && project.findProperty('quilt_aws_enabled').toBoolean()) {
accessWidenerPath = file("src/main/resources/${mod_id}.accessWidener")
project.logger.debug('Quilt Access Widener are enabled for this project.')
}
runs {
client {
client()
setConfigName("Quilt Client")
ideConfigGenerated(true)
runDir("run")
if (project.hasProperty('mc_uuid')) {
// Your UUID, trimmed / without the dashes
programArgs('--uuid', project.getProperty('mc_uuid'))
}
if (project.hasProperty('mc_username')) {
// Your Minecraft in-game username, not email
programArgs('--username', project.getProperty('mc_username'))
}
}
server {
server()
setConfigName("Quilt Server")
ideConfigGenerated(true)
runDir("runserver")
programArgs('--singleplayer', "yes", '--nogui', "true")
}
}
}
processResources {
def buildProps = project.properties.clone()
filesMatching(['quilt.mod.json', 'pack.mcmeta']) {
expand buildProps
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
// Minecraft 1.18 (1.18-pre2) upwards uses Java 17.
it.options.release = 17
}
java {
// Still required by IDEs such as Eclipse and Visual Studio Code
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
// If this mod is going to be a library, then it should also generate Javadocs in order to aid with development.
// Uncomment this line to generate them.
// withJavadocJar()
}
var manifestAttributes = [
"Specification-Title" : mod_name,
"Specification-Vendor" : mod_author,
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : mod_name,
"Implementation-Version" : project.jar.archiveVersion,
"Implementation-Vendor" : mod_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')})",
"Build-On-Minecraft" : libs.versions.minecraft.get()
]
jar {
filesMatching('LICENSE') {
rename '^(LICENSE.*?)(\\..*)?$', "\$1_${archivesBaseName}\$2"
}
manifest.attributes(manifestAttributes)
includeEmptyDirs false
preserveFileTimestamps = false
reproducibleFileOrder = true
}
// Configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
final var actualDateTime = OffsetDateTime.now(ZoneOffset.UTC).withNano(0)
license {
ignoreFailures = false
header = project.file('LicenseHeader.txt')
include '**/*.java'
include '**/*.kt'
exclude '**/package-info.java'
exclude '**/module-info.java'
newLine = false
properties {
year = actualDateTime.getYear()
name = mod_name
source = mod_source
author = mod_author
}
}
modrinth {
token = System.getenv("MODRINTH_TOKEN") // This is the default. Remember to have the MODRINTH_TOKEN environment variable set or else this will fail, or set it to whatever you want - just make sure it stays private!
projectId = project.modrinth_project_id // This can be the project ID or the slug. Either will work!
versionNumber = version // You don't need to set this manually. Will fail if Modrinth has this version already
versionType = project.modrinth_release_type // This is the default -- can also be `beta` or `alpha`
versionName = "${archivesBaseName}-${version}"
changelog = project.mod_changelog_url
uploadFile = remapJar // With Loom, this MUST be set to `remapJar` instead of `jar`!
gameVersions = [libs.versions.minecraft.get()] // Must be an array, even with only one version
loaders = ["quilt"] // Must also be an array - no need to specify this if you're using Loom or ForgeGradle
dependencies { // A special DSL for creating dependencies
// scope.type
// The scope can be `required`, `optional`, `incompatible`, or `embedded`
// The type can either be `project` or `version`
required.project "qsl" // Creates a new required dependency on Fabric API
}
}
task publishToCurseForge(type: TaskPublishCurseForge) {
apiToken = project.findProperty("curseforge_api_token") ?: "invalid/no CurseForge API token found!"
def mainFile = upload(curseforge_project_id, file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar"))
mainFile.displayName = "${archivesBaseName}-${version}"
mainFile.releaseType = curseforge_release_type
mainFile.addModLoader("Quilt")
mainFile.addGameVersion(libs.versions.minecraft.get())
mainFile.addJavaVersion(curseforge_java_version)
//mainFile.addRequirement('fabric-api') //Fabric API slug
//mainFile.addEmbedded('cloth-config') //Cloth Config slug
mainFile.changelog = mod_changelog_url
}
tasks.publishToCurseForge.dependsOn tasks.assemble