mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
1df63c6de8
* Support 1.20.70 Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Update readme Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Use 1.20.70 mappings Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Creative lectern drops work but not survival yet Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix lectern book pickup in survival Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Add copyright notices to new files Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Temp fix for incorrect creative_items from Cloudburst/Data Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix item frame breaking in creative Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Clarify what to remove when 1.20.60 support is dropped Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Don't use dim change enum pre 1.20.70 Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> --------- Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com>
150 lines
No EOL
5 KiB
Text
150 lines
No EOL
5 KiB
Text
import net.kyori.blossom.BlossomExtension
|
|
|
|
plugins {
|
|
alias(libs.plugins.blossom)
|
|
id("geyser.publish-conventions")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.common)
|
|
api(projects.api)
|
|
|
|
// Jackson JSON and YAML serialization
|
|
api(libs.bundles.jackson)
|
|
api(libs.guava)
|
|
|
|
// Fastutil Maps
|
|
implementation(libs.bundles.fastutil)
|
|
|
|
// Network libraries
|
|
implementation(libs.websocket)
|
|
|
|
api(libs.bundles.protocol)
|
|
implementation(libs.blockstateupdater)
|
|
|
|
api(libs.mcauthlib)
|
|
api(libs.mcprotocollib) {
|
|
exclude("io.netty", "netty-all")
|
|
exclude("com.github.GeyserMC", "packetlib")
|
|
exclude("com.github.GeyserMC", "mcauthlib")
|
|
}
|
|
|
|
implementation(libs.raknet) {
|
|
exclude("io.netty", "*")
|
|
}
|
|
|
|
implementation(libs.netty.resolver.dns)
|
|
implementation(libs.netty.resolver.dns.native.macos) { artifact { classifier = "osx-x86_64" } }
|
|
implementation(libs.netty.codec.haproxy)
|
|
|
|
// Network dependencies we are updating ourselves
|
|
api(libs.netty.handler)
|
|
|
|
implementation(libs.netty.transport.native.epoll) { artifact { classifier = "linux-x86_64" } }
|
|
implementation(libs.netty.transport.native.epoll) { artifact { classifier = "linux-aarch_64" } }
|
|
implementation(libs.netty.transport.native.kqueue) { artifact { classifier = "osx-x86_64" } }
|
|
|
|
// Adventure text serialization
|
|
api(libs.bundles.adventure)
|
|
|
|
api(libs.erosion.common) {
|
|
isTransitive = false
|
|
}
|
|
|
|
// Test
|
|
testImplementation(libs.junit)
|
|
|
|
// Annotation Processors
|
|
compileOnly(projects.ap)
|
|
|
|
annotationProcessor(projects.ap)
|
|
|
|
api(libs.events)
|
|
}
|
|
|
|
configurations.api {
|
|
// This is still experimental - additionally, it could only really benefit standalone
|
|
exclude(group = "io.netty.incubator", module = "netty-incubator-transport-native-io_uring")
|
|
}
|
|
|
|
tasks.processResources {
|
|
// This is solely for backwards compatibility for other programs that used this file before the switch to gradle.
|
|
// It used to be generated by the maven Git-Commit-Id-Plugin
|
|
filesMatching("git.properties") {
|
|
val info = GitInfo()
|
|
expand(
|
|
"branch" to info.branch,
|
|
"buildNumber" to info.buildNumber,
|
|
"projectVersion" to project.version,
|
|
"commit" to info.commit,
|
|
"commitAbbrev" to info.commitAbbrev,
|
|
"commitMessage" to info.commitMessage,
|
|
"repository" to info.repository
|
|
)
|
|
}
|
|
}
|
|
|
|
configure<BlossomExtension> {
|
|
val mainFile = "src/main/java/org/geysermc/geyser/GeyserImpl.java"
|
|
val info = GitInfo()
|
|
|
|
replaceToken("\${version}", "${project.version} (${info.gitVersion})", mainFile)
|
|
replaceToken("\${gitVersion}", info.gitVersion, mainFile)
|
|
replaceToken("\${buildNumber}", info.buildNumber, mainFile)
|
|
replaceToken("\${branch}", info.branch, mainFile)
|
|
replaceToken("\${commit}", info.commit, mainFile)
|
|
replaceToken("\${repository}", info.repository, mainFile)
|
|
}
|
|
|
|
fun Project.buildNumber(): Int =
|
|
(System.getenv("GITHUB_RUN_NUMBER") ?: jenkinsBuildNumber())?.let { Integer.parseInt(it) } ?: -1
|
|
|
|
inner class GitInfo {
|
|
val branch: String
|
|
val commit: String
|
|
val commitAbbrev: String
|
|
|
|
val gitVersion: String
|
|
val version: String
|
|
val buildNumber: Int
|
|
|
|
val commitMessage: String
|
|
val repository: String
|
|
|
|
init {
|
|
// On Jenkins, a detached head is checked out, so indra cannot determine the branch.
|
|
// Fortunately, this environment variable is available.
|
|
branch = indraGit.branchName() ?: System.getenv("BRANCH_NAME") ?: "DEV"
|
|
|
|
val commit = indraGit.commit()
|
|
this.commit = commit?.name ?: "0".repeat(40)
|
|
commitAbbrev = commit?.name?.substring(0, 7) ?: "0".repeat(7)
|
|
|
|
gitVersion = "git-${branch}-${commitAbbrev}"
|
|
version = "${project.version} ($gitVersion)"
|
|
buildNumber = buildNumber()
|
|
|
|
val git = indraGit.git()
|
|
commitMessage = git?.commit()?.message ?: ""
|
|
repository = git?.repository?.config?.getString("remote", "origin", "url") ?: ""
|
|
}
|
|
}
|
|
|
|
// todo remove this when we're not using Jenkins anymore
|
|
fun jenkinsBuildNumber(): String? = System.getenv("BUILD_NUMBER")
|
|
|
|
// Manual task to download the bedrock data files from the CloudburstMC/Data repository
|
|
// Invoke with ./gradlew :core:downloadBedrockData --suffix=1_20_70
|
|
// Set suffix to the current Bedrock version
|
|
tasks.register<DownloadFilesTask>("downloadBedrockData") {
|
|
urls = listOf(
|
|
"https://raw.githubusercontent.com/CloudburstMC/Data/master/entity_identifiers.dat",
|
|
"https://raw.githubusercontent.com/CloudburstMC/Data/master/biome_definitions.dat",
|
|
"https://raw.githubusercontent.com/CloudburstMC/Data/master/block_palette.nbt",
|
|
"https://raw.githubusercontent.com/CloudburstMC/Data/master/creative_items.json",
|
|
"https://raw.githubusercontent.com/CloudburstMC/Data/master/runtime_item_states.json"
|
|
)
|
|
suffixedFiles = listOf("block_palette.nbt", "creative_items.json", "runtime_item_states.json")
|
|
|
|
destinationDir = "$projectDir/src/main/resources/bedrock"
|
|
} |