Skip to content

Commit

Permalink
build.gradle(FABRIC|FORGE): Reorganized Mavens URL to allow Create works
Browse files Browse the repository at this point in the history
  • Loading branch information
Xelbayria committed Dec 28, 2024
1 parent 280c8e5 commit d4aca9b
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 24 deletions.
35 changes: 31 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -223,16 +223,43 @@ allprojects {
url = "https://www.cursemaven.com"
allowInsecureProtocol = true
}
maven { url = "https://mvn.devos.one/snapshots/" } // registrate_fabric & registrate
maven { url = "https://api.modrinth.com/maven" }

maven { url = "https://mvn.devos.one/snapshots/" }

maven { url = "https://mvn.devos.one/releases" } // Porting Lib Releases

maven { url "https://maven.shedaniel.me/" } // Cloth Config

// Required for Create
maven {
url = "https://api.modrinth.com/maven"
name "tterrag maven"
url "https://maven.tterrag.com/" // Create & Several Dependencies
}
maven {
maven { // Forge Config API Port
name = "Fuzs Mod Resources"
url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
}
maven { // Reach Entity Attributes
url = "https://maven.jamieswhiteshirt.com/libs-release"
content { includeGroup("com.jamieswhiteshirt") }
}
maven { // CC: Tweaked
url "https://squiddev.cc/maven"
}
maven { // Unknown
name = 'Ladysnake Mods'
url = 'https://maven.ladysnake.org/releases'
}
maven { url = "https://mvn.devos.one/releases/" } // fabricators_of_create
maven { // JEI
name = "Jared's maven"
url = "https://maven.blamejared.com/"
}
maven { // Botania & FALLBACK for JEI
name = "ModMaven"
url = "https://modmaven.dev"
}
// END -------------
}

tasks.withType(JavaCompile) {
Expand Down
11 changes: 0 additions & 11 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -226,16 +226,5 @@ publishing {
}
}
repositories {
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.terraformersmc.com/releases" }

maven {
name = 'ModdingPlayground'
url = 'https://raw.githubusercontent.com/moddingplayground/maven/main/'
}
maven { url = "https://mvn.devos.one/releases" } // Porting Lib Releases
maven { // Reach Entity Attributes
url = "https://maven.jamieswhiteshirt.com/libs-release"
content { includeGroup("com.jamieswhiteshirt") }
}
}
14 changes: 5 additions & 9 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,10 @@ publishing {
}


repositories{
// Built mods
mavenCentral()
maven {
name "tterrag maven"
url "https://maven.tterrag.com/"
}
}
//repositories{
// // Built mods
// mavenCentral()
//}

dependencies {
forge "net.minecraftforge:forge:${rootProject.forge_version}"
Expand Down Expand Up @@ -162,7 +158,7 @@ dependencies {

//!! ================================================== IMPORTS ===================================================== \\
//!! ONLY FOR TESTING - can be commented out or enabled
// modRuntimeOnly("curse.maven:another-furniture-610492:4034009") //WARNING: version 2.1.2-1.19.2
// modRuntimeOnly("curse.maven:another-furniture-610492:4034009") //WARNING: v2.1.2-1.19.2 -> 1.20.1: Cannot remap access widener from namespace 'srg'. Expected: 'intermediary'
// modRuntimeOnly("curse.maven:backpacked-352835:5401965")
// modRuntimeOnly("curse.maven:camp-chair-531744:4579679")
// modRuntimeOnly("curse.maven:chipped-456956:4634856") // v3.0.1
Expand Down

0 comments on commit d4aca9b

Please sign in to comment.