mirror of
https://github.com/TibiNonEst/cauldron-dyeing.git
synced 2025-08-08 19:53:57 -05:00
Get working in prod + housekeeping
- Include required FAPI modules - Bump version 0.1.0 -> 1.0.0 - Change FLoader dep to >= 0.12.0
This commit is contained in:
parent
d26b7ca763
commit
f885301e64
3 changed files with 15 additions and 4 deletions
13
build.gradle
13
build.gradle
|
@ -19,6 +19,15 @@ repositories {
|
|||
}
|
||||
}
|
||||
|
||||
var apiModules = [
|
||||
"fabric-api-base",
|
||||
"fabric-tool-attribute-api-v1",
|
||||
"fabric-mining-level-api-v1",
|
||||
"fabric-resource-loader-v0",
|
||||
"fabric-tag-extensions-v0",
|
||||
"fabric-object-builder-api-v1"
|
||||
]
|
||||
|
||||
dependencies {
|
||||
// To change the versions see the gradle.properties file
|
||||
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
||||
|
@ -26,7 +35,9 @@ dependencies {
|
|||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
|
||||
// Fabric API
|
||||
include modImplementation(fabricApi.module("fabric-object-builder-api-v1", project.fabric_version))
|
||||
apiModules.forEach {
|
||||
include modImplementation(fabricApi.module(it, project.fabric_version))
|
||||
}
|
||||
|
||||
// Sodium
|
||||
modCompileOnly "maven.modrinth:sodium:${project.sodium_version}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue