Skip to content

Commit

Permalink
chore: add includeGroups to maven mirrors to improve build speed
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Dec 15, 2022
1 parent 74dc89e commit ec534e2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,30 @@ repositories {
maven {
name = "KliKli Dev Repsy Maven"
url = "https://repo.repsy.io/mvn/klikli-dev/mods"
content {
includeGroup "com.klikli_dev"
}
}
maven {
name = "Progwm16 maven - JEI"
url = 'https://dvs1.progwml6.com/files/maven'
content {
includeGroup "mezz.jei"
}
}
maven {
name = "Curios Maven"
url = "https://maven.theillusivec4.top/"
content {
includeGroup "top.theillusivec4.curios"
}
}
maven {
name = "Geckolib Maven"
url = "https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/"
content {
includeGroup "software.bernie.geckolib"
}
}
maven {
url "https://cursemaven.com"
Expand Down
12 changes: 10 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' }
maven { url = 'https://maven.parchmentmc.org' }
maven {
url = 'https://maven.minecraftforge.net/'
content {
includeGroup "net.minecraftforge.gradle"
includeGroup "net.minecraftforge"
}
}
maven {
url = 'https://maven.parchmentmc.org'
}
}
}

0 comments on commit ec534e2

Please sign in to comment.