This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
build.gradle
266 lines (227 loc) · 8.63 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
plugins {
id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
id 'com.matthewprenger.cursegradle' version '1.4.0'
id 'org.ajoberstar.grgit' version '3.1.1'
id 'com.github.breadmoirai.github-release' version '2.2.12'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
// Adds a few utility methods like getProjectProperty
apply from: 'https://raw.githubusercontent.com/NerdHubMC/Gradle-Scripts/master/scripts/utilities.gradle'
apply from: 'https://raw.githubusercontent.com/NerdHubMC/Gradle-Scripts/master/scripts/fabric/publish/changelog.gradle'
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
loom {
accessWidener = file("src/main/resources/illuminations.accesswidener")
}
//def apiModules = [
// "fabric-api-base",
// "fabric-resource-loader-v0",
// "fabric-particles-v1"
//]
repositories {
maven { url 'https://jitpack.io' }
// where grondag's mods live
maven {
name = "dblsaiko"
url = "https://maven.dblsaiko.net/"
}
maven {
name = "Cotton"
url = "http://server.bbkr.space:8081/artifactory/libs-release/"
allowInsecureProtocol = true
}
// REI, odds and ends
maven {
name = "CurseForge"
url = "https://minecraft.curseforge.com/api/maven"
}
// cloth config
maven { url "https://maven.shedaniel.me/" }
// satin
maven {
name = 'Ladysnake Mods'
url = 'https://ladysnake.jfrog.io/artifactory/mods'
content {
includeGroup 'io.github.ladysnake'
includeGroupByRegex 'io\\.github\\.onyxstudios.*'
}
}
// mod menu
maven {
name = 'TerraformersMC'
url = 'https://maven.terraformersmc.com/'
}
}
dependencies {
//to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// apiModules.each {
// modImplementation include(fabricApi.module(it, project.fabric_version))
// }
// Sodium
// modRuntime 'com.github.jellysquid3:sodium-fabric:mc1.16.1-0.1.0'
// cloth config
modApi("me.shedaniel.cloth:cloth-config-fabric:5.+") {
exclude(group: "net.fabricmc.fabric-api")
}
include "me.shedaniel.cloth:cloth-config-fabric:5.0.34"
// mod menu
modCompileOnly("com.terraformersmc:modmenu:2.0.5") {
exclude module: "fabric-api"
}
modRuntime("com.terraformersmc:modmenu:2.0.5") {
exclude module: "fabric-api"
}
// canvas renderer
// modImplementation "grondag:canvas-mc117-1.17:1.0.2033"
// satin
modCompileOnly "io.github.ladysnake:satin:${satin_version}"
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}
jar {
from "LICENSE"
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
}
}
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
}
task checkGitStatus() {
group = 'publishing'
description = 'Checks that the git repository is in a state suitable for release'
doLast {
if (grgit == null) throw new RuntimeException('No git repository')
if (!grgit.status().isClean()) {
throw new RuntimeException("Git repository not ready for release (${grgit.status()})")
}
def currentBranch = grgit.branch.current().getName()
grgit.fetch()
if (grgit.tag.list().any { it.name == project.version }) {
throw new RuntimeException("A tag already exists for ${project.version}")
}
def status = grgit.branch.status(name: currentBranch)
if (status.aheadCount != 0) {
throw new RuntimeException('Some commits have not been pushed')
}
if (status.behindCount != 0) {
throw new RuntimeException('Some commits have not been pulled')
}
}
}
githubRelease {
repo "Illuminations"
token "${getProjectProperty('github_releases_token')}"
// default owner: last component of maven group
// default repo: name of the project
tagName = project.version
targetCommitish = { grgit.branch.current().name }
body = { project.getChangelogText() }
FilenameFilter filter = { dir, filename -> filename.contains(project.version) && !filename.contains('-dev.jar') }
releaseAssets = { jar.destinationDirectory.asFile.get().listFiles filter }
}
tasks.githubRelease.dependsOn(checkGitStatus)
curseforge {
if (project.getProjectProperty('curse_key') != null) {
apiKey = project.getProjectProperty('curse_key')
}
if (project.hasProperty('curseforge_id')) {
project {
id = findProperty('curseforge_id')
releaseType = project.release_type
//usually automatically determined by the CurseGradle plugin, but won't work with fabric
"${project.curseforge_versions}".split('; ').each {
addGameVersion it
}
addGameVersion 'Fabric'
mainArtifact(remapJar) {
displayName = "${project.name}-${project.version}.jar"
if (project.hasProperty('cf_requirements') || project.hasProperty('cf_optionals') || project.hasProperty('cf_embeddeds') || project.hasProperty('cf_tools') || project.hasProperty('cf_incompatibles') || project.hasProperty('cf_includes')) {
relations {
if (project.hasProperty('cf_requirements')) {
"${project.cf_requirements}".split('; ').each {
requiredDependency "${it}"
}
}
if (project.hasProperty('cf_optionals')) {
"${project.cf_optionals}".split('; ').each {
optionalDependency "${it}"
}
}
if (project.hasProperty('cf_embeddeds')) {
"${project.cf_embeddeds}".split('; ').each {
embeddedLibrary "${it}"
}
}
if (project.hasProperty('cf_tools')) {
"${project.cf_tools}".split('; ').each {
tool "${it}"
}
}
if (project.hasProperty('cf_incompatibles')) {
"${project.cf_incompatibles}".split('; ').each {
incompatible "${it}"
}
}
if (project.hasProperty('cf_includes')) {
"${project.cf_includes}".split('; ').each {
include "${it}"
}
}
}
}
}
changelogType = 'markdown'
changelog = project.getChangelogText()
afterEvaluate {
uploadTask.dependsOn remapSourcesJar
}
}
options {
forgeGradleIntegration = false
}
}
}
tasks.curseforge.dependsOn(checkGitStatus)
task release(dependsOn: [tasks.githubRelease, tasks.curseforge]) {
group = 'publishing'
description = 'Releases a new version to Github and Curseforge'
}