Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
77 Zeilen
2.6 KiB
Plaintext
77 Zeilen
2.6 KiB
Plaintext
plugins {
|
|
id("fabric-loom") version "1.0-SNAPSHOT"
|
|
id("maven-publish")
|
|
id("com.github.johnrengelman.shadow")
|
|
id("java")
|
|
}
|
|
|
|
java {
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
dependencies {
|
|
//to change the versions see the gradle.properties file
|
|
minecraft(libs.fabric.minecraft)
|
|
mappings(loom.officialMojangMappings())
|
|
modImplementation(libs.fabric.loader)
|
|
|
|
// Fabric API. This is technically optional, but you probably want it anyway.
|
|
modImplementation(libs.fabric.api)
|
|
|
|
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
|
|
// You may need to force-disable transitiveness on them.
|
|
|
|
api(projects.core)
|
|
shadow(projects.core) {
|
|
exclude(group = "com.google.guava", module = "guava")
|
|
exclude(group = "com.google.code.gson", module = "gson")
|
|
exclude(group = "org.slf4j")
|
|
exclude(group = "com.nukkitx.fastutil")
|
|
exclude(group = "io.netty.incubator")
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
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/")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.geysermc.geyser.platform.fabric.GeyserFabricMain")
|
|
}
|
|
|
|
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 {
|
|
// Mirrors the example fabric project, otherwise tons of dependencies are shaded that shouldn't be
|
|
configurations = listOf(project.configurations.shadow.get())
|
|
// The remapped shadowJar is the final desired Geyser-Fabric.jar
|
|
archiveVersion.set(project.version.toString())
|
|
archiveClassifier.set("shaded")
|
|
|
|
relocate("org.objectweb.asm", "org.geysermc.relocate.asm")
|
|
relocate("org.yaml", "org.geysermc.relocate.yaml") // https://github.com/CardboardPowered/cardboard/issues/139
|
|
relocate("com.fasterxml.jackson", "org.geysermc.relocate.jackson")
|
|
relocate("net.kyori", "org.geysermc.relocate.kyori")
|
|
}
|
|
|
|
remapJar {
|
|
dependsOn(shadowJar)
|
|
inputFile.set(shadowJar.get().archiveFile)
|
|
archiveBaseName.set("Geyser-Fabric")
|
|
archiveClassifier.set("")
|
|
archiveVersion.set("")
|
|
}
|
|
} |