mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-18 02:22:32 +00:00
* Download allay mappings from github instead of using git submodules Signed-off-by: solonovamax <solonovamax@12oclockpoint.com> * Remove allay gitignore Signed-off-by: solonovamax <solonovamax@12oclockpoint.com> * Use the same dependency notation as the rest of the project --------- Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
repositories {
|
|
ivy {
|
|
url = uri("https://raw.githubusercontent.com/")
|
|
patternLayout {
|
|
artifact("[organisation]/[revision]/[artifact].([ext])")
|
|
setM2compatible(true)
|
|
}
|
|
metadataSources {
|
|
artifact()
|
|
}
|
|
}
|
|
}
|
|
|
|
val geyserMappings: Configuration by configurations.register("geyserMappings") {
|
|
isCanBeConsumed = false
|
|
}
|
|
|
|
dependencies {
|
|
shadedApi(project(":common:implementation:base"))
|
|
|
|
implementation("com.google.code.gson", "gson", Versions.Allay.gson)
|
|
|
|
compileOnly("org.allaymc.allay", "api", Versions.Allay.api)
|
|
|
|
geyserMappings("GeyserMC.mappings", "items", Versions.Allay.mappings, ext = "json")
|
|
geyserMappings("GeyserMC.mappings", "biomes", Versions.Allay.mappings, ext = "json")
|
|
geyserMappings("GeyserMC.mappings-generator", "generator_blocks", Versions.Allay.mappingsGenerator, ext = "json")
|
|
}
|
|
|
|
tasks.processResources {
|
|
from(geyserMappings) {
|
|
into("mapping")
|
|
|
|
// rather jank, but whatever
|
|
rename("(?:generator_)?([^-]+)-(.*)\\.json", "$1.json")
|
|
}
|
|
}
|