-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (28 loc) · 727 Bytes
/
build.gradle
File metadata and controls
36 lines (28 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
26
27
28
29
30
31
32
33
34
35
36
plugins {
id("net.lopymine.mossy-plugin")
}
mossyDependencies {
minecraft = stonecutter.current.version.toString()
mappings = prop("build.yarn")
lombok = prop("base.lombok_version")
fabricApi = prop("build.fabric_api")
fabricLoader = prop("build.fabric_loader")
additional {
//override("modCompileOnly", "sodium")
}
}
mossyResources {
//expandFiles = ["custom", "file", "patterns", "here"]
}
repositories {
maven {
name = "Mixin Squared"
url = "https://maven.bawnorton.com/releases"
}
}
dependencies {
include(implementation(annotationProcessor("com.github.bawnorton.mixinsquared:mixinsquared-fabric:${prop("base.mixin_squared")}")))
}
String prop(String key) {
return findProperty(key).toString()
}