-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle
More file actions
18 lines (16 loc) · 753 Bytes
/
build.gradle
File metadata and controls
18 lines (16 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plugins {
id 'com.gradleup.shadow' version "${shadow_version}"
id 'net.fabricmc.fabric-loom' version "${fabric_loom_version}"
id 'mod-update' version "${mod_update_version}"
id 'de.maxhenkel.cursegradle' version "${cursegradle_version}"
id 'com.modrinth.minotaur' version "${minotaur_version}"
}
apply from: "https://raw.githubusercontent.com/henkelmax/mod-gradle-scripts/${mod_gradle_script_version}/mod.gradle"
processResources {
filesMatching('fabric.mod.json') {
expand 'mod_version': mod_version,
'minecraft_dependency': minecraft_dependency,
'fabric_loader_dependency': fabric_loader_dependency,
'fabric_api_dependency_breaks': fabric_api_dependency_breaks
}
}