Added Farmer's delight as dependency
This commit is contained in:
parent
586e17538f
commit
936b942a8c
3 changed files with 36 additions and 2 deletions
28
build.gradle
28
build.gradle
|
|
@ -33,6 +33,18 @@ repositories {
|
|||
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
|
||||
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
|
||||
// for more information about repositories.
|
||||
maven { url = "https://www.cursemaven.com" }
|
||||
//maven { url = "https://mvn.devos.one/releases/" }
|
||||
/*
|
||||
maven {
|
||||
name = "TerraformersMC"
|
||||
url = "https://maven.terraformersmc.com/"
|
||||
}
|
||||
maven { // Fabric ASM for Porting Lib
|
||||
url = "https://jitpack.io/"
|
||||
content { includeGroupAndSubgroups("com.github") }
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
@ -40,8 +52,22 @@ dependencies {
|
|||
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
||||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
|
||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
// Source: https://mvnrepository.com/artifact/com.github.Chocohead/Fabric-ASM
|
||||
modImplementation "curse.maven:farmersdelight-482834:4640640"
|
||||
modCompileOnlyApi "curse.maven:jei-238222:4644452"
|
||||
modRuntimeOnly "curse.maven:jei-238222:4644452"
|
||||
//modImplementation "curse.maven:farmers-delight-refabricated-993166:5299727"
|
||||
/*
|
||||
modImplementation("vectorwing:FarmersDelight:${fdrf_version}") {
|
||||
exclude(group: "net.fabricmc")
|
||||
}
|
||||
for (String module in port_lib_modules.split(",")) {
|
||||
modImplementation("io.github.fabricators_of_create.Porting-Lib:$module:$port_lib_version")
|
||||
}
|
||||
//modLocalRuntime "com.github.Chocohead:Fabric-ASM:v2.3"
|
||||
modLocalRuntime "dev.emi:emi-fabric:${emi_version}"
|
||||
*/
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue