lectern support

This commit is contained in:
lukasabbe
2024-10-20 20:57:29 +02:00
parent cbbd1fc429
commit 552b11b70e
18 changed files with 313 additions and 70 deletions
+12 -3
View File
@@ -11,7 +11,10 @@ base {
}
repositories {}
repositories {
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.terraformersmc.com/releases/" }
}
dependencies {
// To change the versions see the gradle.properties file
@@ -22,12 +25,18 @@ dependencies {
Set<String> apiMudules = [
"fabric-api-base",
"fabric-networking-api-v1",
"fabric-lifecycle-events-v1"
"fabric-lifecycle-events-v1",
"fabric-resource-loader-v0"
]
apiMudules.forEach {
include(modImplementation(fabricApi.module(it,project.fabric_version)))
modImplementation(fabricApi.module(it,project.fabric_version))
}
modApi "me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config}"
modApi "com.terraformersmc:modmenu:${project.modmenu}"
include(implementation "org.yaml:snakeyaml:${project.YAML_snake}")
}
processResources {