Aternans
Aternans

Reputation: 1

Gradle Build can't find a dependency

I was trying to buld a github project, but I got an Could not find plus.dragons.createdragonlib:create_dragon_lib-1.19.2:1.0.2 error. The project - https://github.com/mred231/CreateEnchantmentIndustry-Fabric/tree/1.19.2-f The problem is that gradle can't find the dependency, even though it is there. Probably something here

repositories {
    maven { url = "https://maven.shedaniel.me/" } // Cloth Config, REI
    maven { url = "https://maven.blamejared.com/" } // JEI
    maven { url = "https://maven.parchmentmc.org" } // Parchment mappings
    maven { url = "https://maven.quiltmc.org/repository/release" } // Quilt Mappings
    maven { url = "https://api.modrinth.com/maven" } // LazyDFU
    maven { url = "https://maven.terraformersmc.com/#/releases/" } // Mod Menu
    maven { url = "https://mvn.devos.one/snapshots/" } // Create, Porting Lib, Forge Tags, Milk Lib, Registrate
    maven { url = "https://mvn.devos.one/releases/" } // Porting Lib Releases
    maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/" } // Forge Config API Port
    maven { url = "https://maven.jamieswhiteshirt.com/libs-release" } // Reach Entity Attributes
    maven { url = "https://jitpack.io/" } // Mixin Extras, Fabric ASM
    maven { url = "https://maven.tterrag.com/" } // Flywheel
    maven { url = "https://maven.dragons.plus/releases" } // DragonLib
    maven { url = "https://maven.dragons.plus/snapshots" } // DragonLib snapshot
    mavenLocal() // Fast test
}
...
dependencies { 
    modImplementation("plus.dragons.createdragonlib:create_dragon_lib-${minecraft_version}:${create_dragon_lib_version}")
    }

I have no idea how to fix this, so i'm asking for help here.

Sorry if my English is bad, it's my second language

Upvotes: 0

Views: 32

Answers (0)

Related Questions