1
0
This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
multiplatform-template/Common/build.gradle
2023-06-11 13:26:01 +02:00

27 lines
551 B
Groovy

plugins {
id 'org.quiltmc.loom' version '0.12.+'
}
archivesBaseName = "${mod_id}-shared-${minecraft_version}"
dependencies {
minecraft "com.mojang:minecraft:${minecraft_version}"
mappings loom.officialMojangMappings()
compileOnly group:'org.spongepowered', name:'mixin', version:'0.8.5'
}
loom {
shareCaches()
remapArchives = false
mixin {
useLegacyMixinAp = false
}
}
processResources {
def buildProps = project.properties.clone()
filesMatching(['pack.mcmeta']) {
expand buildProps
}
}