2024-02-23 17:58:39 +01:00
|
|
|
@file:Suppress("UnstableApiUsage")
|
|
|
|
|
2023-06-13 03:40:12 +02:00
|
|
|
import net.fabricmc.loom.task.RemapJarTask
|
2024-02-23 17:58:39 +01:00
|
|
|
import org.gradle.kotlin.dsl.dependencies
|
|
|
|
import org.gradle.kotlin.dsl.maven
|
2023-06-13 03:40:12 +02:00
|
|
|
|
2022-10-03 22:11:07 +02:00
|
|
|
plugins {
|
2024-02-23 17:58:39 +01:00
|
|
|
id("geyser.publish-conventions")
|
|
|
|
id("architectury-plugin")
|
|
|
|
id("dev.architectury.loom")
|
|
|
|
id("com.modrinth.minotaur")
|
2022-10-03 22:11:07 +02:00
|
|
|
}
|
|
|
|
|
2024-03-19 23:05:30 +01:00
|
|
|
// These are provided by Minecraft/modded platforms already, no need to include them
|
|
|
|
provided("com.google.code.gson", "gson")
|
|
|
|
provided("com.google.guava", ".*")
|
|
|
|
provided("org.slf4j", "slf4j-api")
|
|
|
|
provided("com.nukkitx.fastutil", ".*")
|
|
|
|
provided("org.cloudburstmc.fastutil.maps", ".*")
|
|
|
|
provided("org.cloudburstmc.fastutil.sets", ".*")
|
|
|
|
provided("org.cloudburstmc.fastutil.commons", ".*")
|
|
|
|
provided("org.cloudburstmc.fastutil", ".*")
|
|
|
|
provided("org.checkerframework", "checker-qual")
|
|
|
|
provided("io.netty", "netty-transport-classes-epoll")
|
|
|
|
provided("io.netty", "netty-transport-native-epoll")
|
|
|
|
provided("io.netty", "netty-transport-native-unix-common")
|
|
|
|
provided("io.netty", "netty-transport-classes-kqueue")
|
|
|
|
provided("io.netty", "netty-transport-native-kqueue")
|
|
|
|
provided("io.netty", "netty-handler")
|
|
|
|
provided("io.netty", "netty-common")
|
|
|
|
provided("io.netty", "netty-buffer")
|
|
|
|
provided("io.netty", "netty-resolver")
|
|
|
|
provided("io.netty", "netty-transport")
|
|
|
|
provided("io.netty", "netty-codec")
|
|
|
|
provided("io.netty", "netty-resolver-dns")
|
|
|
|
provided("io.netty", "netty-resolver-dns-native-macos")
|
|
|
|
provided("org.ow2.asm", "asm")
|
|
|
|
|
2024-02-23 17:58:39 +01:00
|
|
|
architectury {
|
|
|
|
minecraft = "1.20.4"
|
2022-10-03 22:11:07 +02:00
|
|
|
}
|
|
|
|
|
2023-07-07 20:55:28 +02:00
|
|
|
loom {
|
2024-02-23 17:58:39 +01:00
|
|
|
silentMojangMappingsLicense()
|
2022-10-17 04:47:26 +02:00
|
|
|
}
|
|
|
|
|
2024-03-19 23:05:30 +01:00
|
|
|
configurations {
|
|
|
|
create("includeTransitive").isTransitive = true
|
|
|
|
}
|
|
|
|
|
2022-10-03 22:11:07 +02:00
|
|
|
tasks {
|
|
|
|
// 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.
|
|
|
|
sourcesJar {
|
|
|
|
archiveClassifier.set("sources")
|
|
|
|
from(sourceSets.main.get().allSource)
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
2022-10-17 04:47:26 +02:00
|
|
|
// Mirrors the example fabric project, otherwise tons of dependencies are shaded that shouldn't be
|
|
|
|
configurations = listOf(project.configurations.shadow.get())
|
2024-02-23 17:58:39 +01:00
|
|
|
// The remapped shadowJar is the final desired mod jar
|
2022-10-17 04:47:26 +02:00
|
|
|
archiveVersion.set(project.version.toString())
|
|
|
|
archiveClassifier.set("shaded")
|
2022-10-03 22:11:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
remapJar {
|
|
|
|
dependsOn(shadowJar)
|
2022-10-05 00:18:53 +02:00
|
|
|
inputFile.set(shadowJar.get().archiveFile)
|
2023-06-13 03:40:12 +02:00
|
|
|
archiveClassifier.set("")
|
2024-02-23 17:58:39 +01:00
|
|
|
archiveVersion.set("")
|
2023-06-13 03:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
register("remapModrinthJar", RemapJarTask::class) {
|
|
|
|
dependsOn(shadowJar)
|
|
|
|
inputFile.set(shadowJar.get().archiveFile)
|
|
|
|
archiveVersion.set(project.version.toString() + "+build." + System.getenv("GITHUB_RUN_NUMBER"))
|
|
|
|
archiveClassifier.set("")
|
2022-10-03 22:11:07 +02:00
|
|
|
}
|
2023-03-20 18:04:53 +01:00
|
|
|
}
|
|
|
|
|
2024-03-19 23:05:30 +01:00
|
|
|
afterEvaluate {
|
|
|
|
val providedDependencies = getProvidedDependenciesForProject(project.name)
|
|
|
|
|
|
|
|
// These are shaded, no need to JiJ them
|
|
|
|
configurations["shadow"].dependencies.forEach {shadowed ->
|
|
|
|
println("Not including shadowed dependency: ${shadowed.group}:${shadowed.name}")
|
|
|
|
providedDependencies.add("${shadowed.group}:${shadowed.name}")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now: Include all transitive dependencies that aren't excluded
|
|
|
|
configurations["includeTransitive"].resolvedConfiguration.resolvedArtifacts.forEach { dep ->
|
|
|
|
if (!providedDependencies.contains("${dep.moduleVersion.id.group}:${dep.moduleVersion.id.name}")
|
|
|
|
and !providedDependencies.contains("${dep.moduleVersion.id.group}:.*")) {
|
|
|
|
println("Including dependency via JiJ: ${dep.id}")
|
|
|
|
dependencies.add("include", dep.moduleVersion.id.toString())
|
|
|
|
} else {
|
|
|
|
println("Not including ${dep.id} for ${project.name}!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-23 17:58:39 +01:00
|
|
|
dependencies {
|
|
|
|
minecraft("com.mojang:minecraft:1.20.4")
|
|
|
|
mappings(loom.officialMojangMappings())
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.opencollab.dev/maven-releases/")
|
|
|
|
maven("https://repo.opencollab.dev/maven-snapshots/")
|
|
|
|
maven("https://jitpack.io")
|
|
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots/")
|
|
|
|
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
|
|
|
|
maven("https://maven.neoforged.net/releases")
|
|
|
|
}
|
|
|
|
|
2023-03-20 18:04:53 +01:00
|
|
|
modrinth {
|
2023-03-30 21:27:00 +02:00
|
|
|
token.set(System.getenv("MODRINTH_TOKEN")) // Even though this is the default value, apparently this prevents GitHub Actions caching the token?
|
2023-03-20 18:04:53 +01:00
|
|
|
projectId.set("wKkoqHrH")
|
|
|
|
versionNumber.set(project.version as String + "-" + System.getenv("GITHUB_RUN_NUMBER"))
|
|
|
|
versionType.set("beta")
|
|
|
|
changelog.set("A changelog can be found at https://github.com/GeyserMC/Geyser/commits")
|
|
|
|
|
|
|
|
syncBodyFrom.set(rootProject.file("README.md").readText())
|
|
|
|
|
2023-06-13 03:40:12 +02:00
|
|
|
uploadFile.set(tasks.getByPath("remapModrinthJar"))
|
2023-12-14 22:30:50 +01:00
|
|
|
gameVersions.addAll("1.20.4")
|
2023-06-08 16:34:31 +02:00
|
|
|
failSilently.set(true)
|
2024-02-23 17:58:39 +01:00
|
|
|
}
|