Skip to content

Commit

Permalink
toxic
Browse files Browse the repository at this point in the history
  • Loading branch information
KrLite committed Oct 2, 2023
1 parent 225e31d commit 9d7febd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
25 changes: 17 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,21 @@ repositories {
}
}

maven { url = uri("https://maven.quiltmc.org/repository/release") }
maven { url = uri("https://aperlambda.github.io/maven") }
maven { url = uri("https://dvs1.progwml6.com/files/maven/") }
maven { url = uri("https://maven.cafeteria.dev/releases/") }
maven { url = uri("https://maven.fabricmc.net/") }
maven { url = uri("https://dvs1.progwml6.com/files/maven") }
maven { url = uri("https://maven.cafeteria.dev/releases") }
maven { url = uri("https://maven.fabricmc.net") }
maven { url = uri("https://maven.gegy.dev") }
maven { url = uri("https://maven.kotlindiscord.com/repository/terraformers/") }
maven { url = uri("https://maven.kotlindiscord.com/repository/terraformers") }
maven { url = uri("https://maven.parchmentmc.org") }
maven { url = uri("https://maven.shedaniel.me/") }
maven { url = uri("https://maven.terraformersmc.com/releases/") }
maven { url = uri("https://maven.tterrag.com/") }
maven { url = uri("https://maven.shedaniel.me") }
maven { url = uri("https://maven.terraformersmc.com/releases") }
maven { url = uri("https://maven.tterrag.com") }
maven { url = uri("https://maven.wispforest.io") }
maven { url = uri("https://modmaven.dev") }
maven { url = uri("https://raw.githubusercontent.com/SolidBlock-cn/mvn-repo/main") }
maven { url = uri("https://storage.googleapis.com/devan-maven/") }
maven { url = uri("https://storage.googleapis.com/devan-maven") }

mavenCentral()
}
Expand Down Expand Up @@ -118,6 +119,14 @@ dependencies {
modRuntimeOnly("me.shedaniel:RoughlyEnoughItems-fabric:${property("reiVersion")}")
}

/*
project.configurations.configureEach {
exclude(group = "net.fabricmc", module = "fabric-loader")
// exclude(group = "net.fabricmc.fabric-api")
}
*/

tasks {
processResources {
inputs.property("modpackVersion", version)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ jitpack = [
]

[plugins]
quilt_loom = { id = "org.quiltmc.loom", version = "1.2.+" }
quilt_loom = { id = "fabric-loom", version = "1.4-SNAPSHOT" }

0 comments on commit 9d7febd

Please sign in to comment.