-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbuild.fabric.gradle
More file actions
31 lines (25 loc) · 814 Bytes
/
build.fabric.gradle
File metadata and controls
31 lines (25 loc) · 814 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
plugins {
id 'fabric-loom' version '1.6+'
id 'com.modrinth.minotaur' version '2.+'
}
group = "team.creative"
repositories {
maven {
url = "https://api.modrinth.com/maven"
}
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "maven.modrinth:modmenu:${project.modmenu_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
implementation project(path: ':CreativeCore', configuration: 'namedElements')
}
modDependencies = [
creativecore: ">=" + creativecore_version
]
modSides=[ "client" ]
loom.mixin {
defaultRefmapName = "ambientsounds.mixins.refmap.json"
}