fix build

This commit is contained in:
QuImUfu 2023-07-02 16:40:34 +02:00
parent 4e0809c863
commit 2b6db5fabd

View File

@ -20,6 +20,19 @@ repositories {
maven { url 'https://jitpack.io' }
maven { url "https://maven.shedaniel.me/" }
maven { url "https://maven.terraformersmc.com/releases/" }
maven {
name = 'Ladysnake Mods'
url = 'https://ladysnake.jfrog.io/artifactory/mods'
}
maven {
url = "https://api.modrinth.com/maven"
}
maven {
url = uri("https://ueaj.dev/maven")
// for 0.4.2 and older
// url uri("https://raw.githubusercontent.com/Devan-Kerman/Devan-Repo/master/")
}
}
loom {
@ -63,6 +76,13 @@ dependencies {
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
}
configurations.include.transitive = true
configurations.include.dependencies.each {
if (!it.name.contains("bom")) {
it.transitive = false
}
}
processResources {
inputs.property "version", project.version