mirror of
https://github.com/TibiNonEst/cauldron-dyeing.git
synced 2024-11-24 03:27:19 -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}"
|
||||
|
|
|
@ -4,12 +4,12 @@ org.gradle.jvmargs=-Xmx1G
|
|||
# Fabric Properties
|
||||
# check these on https://modmuss50.me/fabric.html
|
||||
minecraft_version=1.18.1
|
||||
yarn_mappings=1.18.1+build.12
|
||||
yarn_mappings=1.18.1+build.18
|
||||
loader_version=0.12.12
|
||||
fabric_version=0.45.0+1.18
|
||||
|
||||
# Mod Properties
|
||||
mod_version=0.1.0
|
||||
mod_version=1.0.0
|
||||
maven_group=me.tibinonest.mods
|
||||
archives_base_name=cauldron-dying
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
],
|
||||
"depends": {
|
||||
"minecraft": ">=1.18",
|
||||
"fabricloader": ">=0.12.12",
|
||||
"fabricloader": ">=0.12.0",
|
||||
"fabric-object-builder-api-v1": ">=0.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue