mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-19 14:59:27 +00:00
* Update gradle to 9.2.0 * Eclipse doesn't like defining a generic in an instanceof check... Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix launching on standalone due to Gradle 9 changes Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Update indra to v4; fix as many gradle deprecation warnings as possible Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Do task order suggestion; remove properties comment line Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix fabric runServer rask Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix :neoforge:runServer gradle task Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> * Fix libs.versions.toml * Fix dupe runtask def * Update architectury-loom and resolve properties issues --------- Signed-off-by: Joshua Castle <26531652+Kas-tle@users.noreply.github.com> Co-authored-by: onebeastchris <github@onechris.mozmail.com>
39 lines
987 B
Plaintext
39 lines
987 B
Plaintext
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
plugins {
|
|
id("geyser.base-conventions")
|
|
id("com.gradleup.shadow")
|
|
}
|
|
|
|
shadow {
|
|
addShadowVariantIntoJavaComponent = false
|
|
}
|
|
|
|
tasks {
|
|
named<Jar>("jar") {
|
|
from(project.rootProject.file("LICENSE"))
|
|
}
|
|
|
|
val shadowJar = named<ShadowJar>("shadowJar") {
|
|
archiveBaseName.set(project.name)
|
|
archiveVersion.set("")
|
|
archiveClassifier.set("")
|
|
|
|
val currentProjectName = project.name // Capture project name at config time
|
|
|
|
dependencies {
|
|
providedDependencies[currentProjectName]?.forEach { string ->
|
|
println("Excluding $string from $currentProjectName")
|
|
exclude(dependency(string))
|
|
}
|
|
|
|
exclude(dependency("org.checkerframework:checker-qual:.*"))
|
|
exclude(dependency("org.jetbrains:annotations:.*"))
|
|
}
|
|
}
|
|
|
|
named("build") {
|
|
dependsOn(shadowJar)
|
|
}
|
|
}
|