27 lines
610 B
Groovy
27 lines
610 B
Groovy
|
archivesBaseName = "ExampleMod-Common-${minecraft_version}"
|
||
|
|
||
|
dependencies {
|
||
|
// Add your dependencies here
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* ===============================================================================
|
||
|
* = DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING =
|
||
|
* ===============================================================================
|
||
|
*/
|
||
|
|
||
|
unimined.minecraft {
|
||
|
fabric {
|
||
|
loader fabric_loader
|
||
|
}
|
||
|
|
||
|
defaultRemapJar = false
|
||
|
}
|
||
|
|
||
|
processResources {
|
||
|
def buildProps = project.properties.clone()
|
||
|
|
||
|
filesMatching(['pack.mcmeta']) {
|
||
|
expand buildProps
|
||
|
}
|
||
|
}
|