almostunified/Fabric/build.gradle.kts

45 lines
2 KiB
Text
Raw Normal View History

2022-05-31 10:50:46 -04:00
val minecraftVersion: String by project
val fabricLoaderVersion: String by project
2023-02-01 14:43:30 -05:00
val fabricApiVersion: String by project
val fabricRecipeViewer: String by project
2022-05-31 17:19:29 -04:00
val reiVersion: String by project
2022-09-16 14:13:01 -04:00
val jeiVersion: String by project
val kubejsVersion: String by project
2022-05-31 10:50:46 -04:00
plugins {
2023-02-01 14:43:30 -05:00
id("com.github.johnrengelman.shadow") version ("7.1.2")
2022-05-31 10:50:46 -04:00
}
2023-02-01 14:43:30 -05:00
architectury {
platformSetupLoomIde()
fabric()
2022-05-31 10:50:46 -04:00
}
loom {
2023-02-01 14:43:30 -05:00
if (project.findProperty("enableAccessWidener") == "true") { // Optional property for `gradle.properties` to enable access wideners.
accessWidenerPath.set(project(":Common").loom.accessWidenerPath)
println("Access widener enabled for project ${project.name}. Access widener path: ${loom.accessWidenerPath.get()}")
}
}
2023-02-01 14:43:30 -05:00
val common by configurations
val shadowCommon by configurations
dependencies {
modImplementation("net.fabricmc:fabric-loader:$fabricLoaderVersion")
2023-02-01 14:43:30 -05:00
modApi("net.fabricmc.fabric-api:fabric-api:$fabricApiVersion+$minecraftVersion")
common(project(":Common", "namedElements")) { isTransitive = false }
shadowCommon(project(":Common", "transformProductionFabric")) { isTransitive = false }
2023-02-01 14:43:30 -05:00
modCompileOnly(modLocalRuntime("dev.latvian.mods:kubejs-fabric:$kubejsVersion")!!)
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api-fabric:$reiVersion") // required for common rei plugin
compileOnly("me.shedaniel:REIPluginCompatibilities-forge-annotations:9.+") // required to disable rei compat layer on jei plugin
testCompileOnly("me.shedaniel:REIPluginCompatibilities-forge-annotations:9.+") // don't question this, it's required for compiling
modCompileOnly("mezz.jei:jei-$minecraftVersion-fabric:$jeiVersion") // required for common jei plugin and mixin
2023-02-01 14:43:30 -05:00
when (fabricRecipeViewer) { // runtime only
"rei" -> modLocalRuntime("me.shedaniel:RoughlyEnoughItems-fabric:$reiVersion")
"jei" -> modLocalRuntime("mezz.jei:jei-$minecraftVersion-fabric:$jeiVersion")
else -> throw GradleException("Invalid fabricRecipeViewer value: $fabricRecipeViewer")
}
2022-05-31 10:50:46 -04:00
}