-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
185 lines (152 loc) · 4.67 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
plugins {
id 'fabric-loom' version '1.4.+'
id 'dev.yumi.gradle.licenser' version '1.0.+'
id 'java-library'
id 'maven-publish'
id 'com.modrinth.minotaur' version '2.+'
id 'net.darkhax.curseforgegradle' version '1.1.+'
}
import com.modrinth.minotaur.dependencies.ModDependency
import net.darkhax.curseforgegradle.TaskPublishCurseForge
group = project.maven_group
version = "${project.mod_version}+${project.minecraft_version}"
base.archivesName = project.archives_base_name
// This field defines the Java version your mod target.
def targetJavaVersion = 17
boolean isMCVersionNonRelease() {
return project.minecraft_version.matches('^\\d\\dw\\d\\d[a-z]$')
|| project.minecraft_version.matches('\\d+\\.\\d+-(pre|rc)(\\d+)')
}
String getMCVersionString() {
if (isMCVersionNonRelease()) {
return project.minecraft_version
}
def version = project.minecraft_version.split('\\.')
return version[0] + '.' + version[1]
}
String getVersionType() {
if (isMCVersionNonRelease() || version.contains("-alpha.")) {
return "alpha"
} else if (version.contains("-beta.")) {
return "beta"
} else {
return "release"
}
}
String parseReadme() {
def linkRegex = /!\[([A-z_ ]+)]\((images\/[A-z.\/_]+)\)/
def readme = (String) file('README.md').text
readme = readme.replaceAll(linkRegex, '![$1](https://raw.githubusercontent.com/LambdAurora/lovely_snails/1.20/$2)')
return readme
}
String fetchChangelog() {
def changelogText = file('CHANGELOG.md').text
def regexVersion = ((String) project.mod_version).replaceAll('\\.', /\\./).replaceAll('\\+', '\\+')
def changelogRegex = ~"###? ${regexVersion}\\n\\n(( *- .+\\n)+)"
def matcher = changelogText =~ changelogRegex
if (matcher.find()) {
def changelogContent = matcher.group(1)
def changelogLines = changelogText.split('\n')
def linkRefRegex = ~'^\\[([A-z\\d _\\-/+.]+)]: '
for (int i = changelogLines.length - 1; i > 0; i--) {
def line = changelogLines[i]
if ((line =~ linkRefRegex).find())
changelogContent += '\n' + line
else break
}
return changelogContent
} else {
return null;
}
}
loom {
// Enable runtime only log4j, forces mods to use SLF4J for logging.
runtimeOnlyLog4j = true
}
repositories {
maven {
name 'Quilt'
url 'https://maven.quiltmc.org/repository/release'
}
}
dependencies {
//to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "org.quiltmc:quilt-mappings:${minecraft_version}+build.${project.quilt_mappings}:intermediary-v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}") {
exclude group: 'net.fabricmc'
}
}
java {
sourceCompatibility = JavaVersion.toVersion(targetJavaVersion)
targetCompatibility = JavaVersion.toVersion(targetJavaVersion)
withSourcesJar()
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = 'UTF-8'
it.options.release.set(targetJavaVersion)
}
processResources {
inputs.property 'version', project.version
filesMatching('fabric.mod.json') {
expand 'version': project.version
}
}
jar {
from('LICENSE') {
rename { "${it}_${project.archivesBaseName}" }
}
}
license {
rule file('HEADER')
}
modrinth {
projectId = project.modrinth_id
versionName = "Lovely Snails ${project.mod_version} (${getMCVersionString()})"
versionType = isMCVersionNonRelease() ? "beta" : "release"
uploadFile = remapJar
gameVersions = [project.minecraft_version]
loaders = ["fabric", "quilt"]
dependencies = [
new ModDependency("P7dR8mSH", "required")
]
syncBodyFrom = parseReadme()
// Changelog fetching
def changelogContent = fetchChangelog()
if (changelogContent) {
changelog = changelogContent
} else {
afterEvaluate {
tasks.modrinth.setEnabled(false)
}
}
}
tasks.modrinth.dependsOn(tasks.modrinthSyncBody)
tasks.register('curseforge', TaskPublishCurseForge) {
setGroup("publishing")
if (System.getenv("CURSEFORGE_TOKEN")) {
apiToken = System.getenv("CURSEFORGE_TOKEN")
} else {
setEnabled(false)
return
}
// Changelog fetching
def changelogContent = fetchChangelog()
if (changelogContent) {
changelogContent = "Changelog:\n\n${changelogContent}"
} else {
setEnabled(false)
return
}
def mainFile = upload(project.curseforge_id, tasks.remapJar)
mainFile.releaseType = this.getVersionType()
mainFile.addGameVersion(project.minecraft_version)
mainFile.addModLoader("Fabric", "Quilt")
mainFile.addJavaVersion("Java 17", "Java 18")
mainFile.displayName = "Lovely Snails ${project.mod_version} (${project.minecraft_version})"
mainFile.addRequirement("fabric-api")
mainFile.addOptional("modmenu")
mainFile.changelogType = "markdown"
mainFile.changelog = changelogContent
}