-
Notifications
You must be signed in to change notification settings - Fork 17
/
build.gradle.kts
208 lines (168 loc) · 6.12 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
198
199
200
201
202
203
204
205
206
207
208
import com.matthewprenger.cursegradle.CurseArtifact
import com.matthewprenger.cursegradle.CurseExtension
import com.matthewprenger.cursegradle.CurseProject
import com.matthewprenger.cursegradle.CurseRelation
import net.minecraftforge.gradle.common.util.RunConfig
import java.time.Instant
import java.time.format.DateTimeFormatter
fun property(key: String) = project.findProperty(key).toString()
fun optionalProperty(key: String) = project.findProperty(key)?.toString()
apply(from = "https://gist.githubusercontent.com/Harleyoc1/4d23d4e991e868d98d548ac55832381e/raw/applesiliconfg.gradle")
plugins {
id("java")
id("net.minecraftforge.gradle")
id("org.parchmentmc.librarian.forgegradle")
id("idea")
id("maven-publish")
id("com.matthewprenger.cursegradle") version "1.4.0"
id("com.harleyoconnor.autoupdatetool") version "1.0.5"
}
repositories {
maven("https://ldtteam.jfrog.io/ldtteam/modding/")
maven("https://www.cursemaven.com") {
content {
includeGroup("curse.maven")
}
}
maven("https://harleyoconnor.com/maven")
maven("https://squiddev.cc/maven/")
}
val modName = property("modName")
val modId = property("modId")
val modVersion = property("modVersion")
val mcVersion = property("mcVersion")
version = "$mcVersion-$modVersion"
group = property("group")
minecraft {
mappings("parchment", "${property("mappingsVersion")}-$mcVersion")
runs {
create("client") {
applyDefaultConfiguration()
if (project.hasProperty("mcUuid")) {
args("--uuid", property("mcUuid"))
}
if (project.hasProperty("mcUsername")) {
args("--username", property("mcUsername"))
}
if (project.hasProperty("mcAccessToken")) {
args("--accessToken", property("mcAccessToken"))
}
}
create("server") {
applyDefaultConfiguration("run-server")
}
create("data") {
applyDefaultConfiguration()
args(
"--mod", modId,
"--all",
"--output", file("src/generated/resources/"),
"--existing", file("src/main/resources"),
"--existing-mod", "dynamictrees",
"--existing-mod", "biomesoplenty"
)
}
}
}
sourceSets.main.get().resources {
srcDir("src/generated/resources")
srcDir("src/localization/resources")
}
dependencies {
minecraft("net.minecraftforge:forge:${mcVersion}-${property("forgeVersion")}")
implementation(fg.deobf("com.ferreusveritas.dynamictrees:DynamicTrees-$mcVersion:${property("dynamicTreesVersion")}"))
implementation(fg.deobf("curse.maven:biomes-o-plenty-220318:3759236"))
runtimeOnly(fg.deobf("com.ferreusveritas.dynamictreesplus:DynamicTreesPlus-$mcVersion:${property("dynamicTreesPlusVersion")}"))
runtimeOnly(fg.deobf("curse.maven:terrablender-563928:3957976"))
runtimeOnly(fg.deobf("curse.maven:jade-324717:3970956"))
runtimeOnly(fg.deobf("mezz.jei:jei-$mcVersion:${property("jeiVersion")}"))
runtimeOnly(fg.deobf("org.squiddev:cc-tweaked-$mcVersion:${property("ccVersion")}"))
runtimeOnly(fg.deobf("com.harleyoconnor.suggestionproviderfix:SuggestionProviderFix-1.18.1:${property("suggestionProviderFixVersion")}"))
}
tasks.jar {
manifest.attributes(
"Specification-Title" to modName,
"Specification-Vendor" to "mangoose",
"Specification-Version" to "1",
"Implementation-Title" to modName,
"Implementation-Version" to project.version,
"Implementation-Vendor" to "mangoose",
"Implementation-Timestamp" to DateTimeFormatter.ISO_INSTANT.format(Instant.now())
)
archiveBaseName.set(modName)
finalizedBy("reobfJar")
}
java {
withSourcesJar()
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
val changelogFile = file("build/changelog.txt")
curseforge {
if (!project.hasProperty("curseApiKey")) {
project.logger.warn("API Key for CurseForge not detected; uploading will be disabled.")
return@curseforge
}
apiKey = property("curseApiKey")
project {
id = "289529"
addGameVersion(mcVersion)
changelog = changelogFile
changelogType = "markdown"
releaseType = optionalProperty("versionType") ?: "release"
addArtifact(tasks.findByName("sourcesJar"))
mainArtifact(tasks.findByName("jar")) {
relations {
requiredDependency("dynamictrees")
requiredDependency("biomes-o-plenty")
optionalDependency("dynamictreesplus")
}
}
}
}
val minecraftVersion = mcVersion
autoUpdateTool {
mcVersion.set(minecraftVersion)
version.set(modVersion)
versionRecommended.set(property("versionRecommended") == "true")
changelogOutputFile.set(changelogFile)
updateCheckerFile.set(file(property("dynamictrees.version_info_repo.path") + File.separatorChar + property("updateCheckerPath")))
}
tasks.autoUpdate {
finalizedBy("curseforge")
}
tasks.withType<GenerateModuleMetadata> {
enabled = false
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
repositories {
maven("file:///${project.projectDir}/mcmodsrepo")
}
}
fun RunConfig.applyDefaultConfiguration(runDirectory: String = "run") {
workingDirectory = file(runDirectory).absolutePath
property("forge.logging.markers", "SCAN,REGISTRIES,REGISTRYDUMP")
property("forge.logging.console.level", "debug")
property("mixin.env.remapRefMap", "true")
property("mixin.env.refMapRemappingFile", "${buildDir}/createSrgToMcp/output.srg")
mods {
create(modId) {
source(sourceSets.main.get())
}
}
}
fun CurseExtension.project(action: CurseProject.() -> Unit) {
this.project(closureOf(action))
}
fun CurseProject.mainArtifact(artifact: Task?, action: CurseArtifact.() -> Unit) {
this.mainArtifact(artifact, closureOf(action))
}
fun CurseArtifact.relations(action: CurseRelation.() -> Unit) {
this.relations(closureOf(action))
}