Skip to content

Commit

Permalink
Use Sponge maven as a backup for Forge maven
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Aug 26, 2024
1 parent 496263d commit ae0e345
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ pluginManagement {
forRepository { maven(url) }
filter(filter)
}
exclusiveMaven("https://maven.minecraftforge.net") {
includeGroupByRegex("net\\.minecraftforge.*")
maven("https://maven.minecraftforge.net") {
content {
includeGroupByRegex("net\\.minecraftforge.*")
}
}
exclusiveMaven("https://maven.parchmentmc.org") {
includeGroupByRegex("org\\.parchmentmc.*")
Expand All @@ -15,8 +17,11 @@ pluginManagement {
includeGroup("net.fabricmc")
includeGroup("fabric-loom")
}
exclusiveMaven("https://repo.spongepowered.org/repository/maven-public/") {
includeGroupByRegex("org\\.spongepowered.*")
maven("https://repo.spongepowered.org/repository/maven-public/") {
content {
includeGroupByRegex("org\\.spongepowered.*")
includeGroupByRegex("net\\.minecraftforge.*")
}
}
gradlePluginPortal()
}
Expand Down

0 comments on commit ae0e345

Please sign in to comment.