-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (22 loc) · 727 Bytes
/
build.gradle
File metadata and controls
25 lines (22 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
plugins {
id 'fabric-loom' version '0.11-SNAPSHOT'
id 'java'
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation files('lib/jex-plugin-dev.jar')
}
processResources {
filesMatching("JexPlugin.json") {
expand "version": project.plugin_version, "mixins": project.mixins_name
}
filesMatching("${project.mixins_name}") {
expand "name": project.plugin_name
}
}
jar {
archiveName("${project.plugin_name}.jar")
}