-
Notifications
You must be signed in to change notification settings - Fork 57
/
build.gradle.kts
197 lines (175 loc) · 5.92 KB
/
build.gradle.kts
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
plugins {
id("fabric-loom") version "1.8.8"
id("maven-publish")
id("com.github.breadmoirai.github-release") version "2.2.12"
id("com.matthewprenger.cursegradle") version "1.4.0"
id("com.modrinth.minotaur") version "2.+"
id("elect86.gik") version "0.0.4"
}
val modVersion: String by project
val mavenGroup: String by project
group = mavenGroup
val minecraftVersion: String by project
val clothConfigVersion: String by project
val modMenuVersion: String by project
version = "$modVersion+mc$minecraftVersion"
sourceSets {
val main = main.get()
loom.mixin.add(main, "bobby.refmap.json")
create("sodium05") {
loom.createRemapConfigurations(this)
loom.mixin.add(this, "bobby-sodium05-compat.refmap.json")
compileClasspath += main.compileClasspath
compileClasspath += main.output
main.runtimeClasspath += output
tasks.jar { from(output) }
}
create("sodium06") {
loom.createRemapConfigurations(this)
loom.mixin.add(this, "bobby-sodium06-compat.refmap.json")
compileClasspath += main.compileClasspath
compileClasspath += main.output
main.runtimeClasspath += output
tasks.jar { from(output) }
}
}
dependencies {
val yarnMappings: String by project
val loaderVersion: String by project
val fabricApiVersion: String by project
val configurateVersion: String by project
val geantyrefVersion: String by project
val hoconVersion: String by project
val sodium05Version: String by project
val sodium06Version: String by project
val starlightVersion: String by project
val confabricateVersion: String by project
minecraft("com.mojang:minecraft:${minecraftVersion}")
mappings("net.fabricmc:yarn:${yarnMappings}:v2")
modImplementation("net.fabricmc:fabric-loader:${loaderVersion}")
modImplementation(include(fabricApi.module("fabric-api-base", fabricApiVersion))!!)
modImplementation(include(fabricApi.module("fabric-command-api-v2", fabricApiVersion))!!)
// we don't need the full thing but our deps pull in an outdated one
modImplementation("net.fabricmc.fabric-api:fabric-api:$fabricApiVersion")
implementation(include("org.spongepowered:configurate-core:$configurateVersion")!!)
implementation(include("org.spongepowered:configurate-hocon:$configurateVersion")!!)
include("io.leangen.geantyref:geantyref:$geantyrefVersion")
include("com.typesafe:config:$hoconVersion")
"modSodium05CompileOnly"("maven.modrinth:sodium:$sodium05Version")
"modSodium06CompileOnly"("maven.modrinth:sodium:$sodium06Version")
modCompileOnly("maven.modrinth:starlight:$starlightVersion")
modCompileOnly("ca.stellardrift:confabricate:$confabricateVersion")
modImplementation("me.shedaniel.cloth:cloth-config-fabric:$clothConfigVersion")
modImplementation("com.terraformersmc:modmenu:$modMenuVersion")
}
tasks.processResources {
inputs.property("version", project.version)
inputs.property("clothConfigVersion", clothConfigVersion)
inputs.property("modMenuVersion", modMenuVersion)
filesMatching("fabric.mod.json") {
expand(mutableMapOf(
"version" to project.version,
"clothConfigVersion" to clothConfigVersion,
"modMenuVersion" to modMenuVersion
))
}
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = "21"
targetCompatibility = "21"
}
tasks.withType<AbstractArchiveTask> {
val archivesBaseName: String by project
archiveBaseName.set(archivesBaseName)
}
tasks.jar {
from("LICENSE.md")
}
publishing {
publications {
create("mavenJava", MavenPublication::class.java) {
from(components["java"])
}
}
}
repositories {
maven("https://maven.shedaniel.me") {
content {
includeGroup("me.shedaniel.cloth")
}
}
maven("https://maven.terraformersmc.com/releases") {
content {
includeGroup("com.terraformersmc")
}
}
maven("https://api.modrinth.com/maven") {
content {
includeGroup("maven.modrinth")
}
}
}
fun readChangelog(): String {
val lines = project.file("CHANGELOG.md").readText().lineSequence().iterator()
if (lines.next() != "### $modVersion") {
throw GradleException("CHANGELOG.md did not start with expected version!")
}
return lines.asSequence().takeWhile { it.isNotBlank() }.joinToString("\n")
}
githubRelease {
token { project.property("github.token") as String }
owner(project.property("github.owner") as String)
repo(project.property("github.repo") as String)
targetCommitish { gik.head!!.id }
releaseName("Version $modVersion for Minecraft $minecraftVersion")
releaseAssets(tasks.remapJar)
body(readChangelog())
}
curseforge {
// Would prefer to use lazy `project.property` but https://github.com/matthewprenger/CurseGradle/issues/32
apiKey = project.findProperty("curseforge.token") as String? ?: "DUMMY"
project(closureOf<com.matthewprenger.cursegradle.CurseProject> {
id = project.property("curseforge.id") as String
changelog = readChangelog()
releaseType = "release"
mainArtifact(tasks.remapJar.flatMap { it.archiveFile }, closureOf<com.matthewprenger.cursegradle.CurseArtifact> {
relations(closureOf<com.matthewprenger.cursegradle.CurseRelation> {
embeddedLibrary("confabricate")
optionalDependency("cloth-config")
optionalDependency("modmenu")
optionalDependency("sodium")
})
})
addGameVersion("Fabric")
addGameVersion(minecraftVersion)
addGameVersion("Java 17")
})
options(closureOf<com.matthewprenger.cursegradle.Options> {
javaVersionAutoDetect = false
javaIntegration = false
forgeGradleIntegration = false
})
}
tasks.withType<com.matthewprenger.cursegradle.CurseUploadTask> {
dependsOn(tasks.remapJar)
}
tasks.modrinth {
dependsOn(tasks.remapJar)
}
modrinth {
token.set(project.findProperty("modrinth.token") as String? ?: "DUMMY")
projectId.set(project.property("modrinth.id") as String)
uploadFile.set(tasks.remapJar.get())
changelog.set(readChangelog())
dependencies {
optional.project("9s6osm5g") // Cloth Config
optional.project("mOgUt4GM") // Mod Menu
optional.project("AANobbMI") // Sodium
}
}
val publishAll by tasks.registering {
dependsOn(tasks.curseforge)
dependsOn(tasks.githubRelease)
dependsOn(tasks.modrinth)
}