Initial Commit
This commit is contained in:
27
Common/build.gradle
Normal file
27
Common/build.gradle
Normal 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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user