1
0

Initial Commit

This commit is contained in:
2023-06-11 13:26:01 +02:00
commit 43bcd45b00
32 changed files with 1189 additions and 0 deletions

27
Common/build.gradle Normal file
View File

@@ -0,0 +1,27 @@
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
}
}