Skip to content

Commit

Permalink
Merge pull request #574 from SquidDev/maven-content-specs
Browse files Browse the repository at this point in the history
Specify content filters for each maven repo
  • Loading branch information
SirEndii authored Apr 7, 2024
2 parents 9bb0060 + cf41ef5 commit f688819
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 9 deletions.
29 changes: 24 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,10 @@ repositories {
maven {
name = "Blamejared maven botania patchouli"
url = 'https://maven.blamejared.com'
content {
includeGroup("vazkii.botania")
includeGroup("vazkii.patchouli")
}
}
maven {
name = "Squiddev maven cct"
Expand All @@ -178,6 +182,9 @@ repositories {
maven {
name = "Theillusivec4 maven curios"
url = "https://maven.theillusivec4.top/"
content {
includeGroup("top.theillusivec4.curios")
}
}
maven {
name = "LDT Team minecolonies"
Expand All @@ -189,13 +196,19 @@ repositories {
maven {
name = "Modmaven Jei"
url = 'https://modmaven.dev/'
content {
includeGroup("mezz.jei")
includeGroup("appeng")
includeGroup("mekanism")
}
}
maven {
name = "Create maven"
url = "https://maven.tterrag.com/"
content {
includeGroup("com.simibubi.create")
includeGroup("com.jozufozu.flywheel")
includeGroup("com.tterrag.registrate")
}
}
maven {
Expand All @@ -208,28 +221,34 @@ repositories {
maven {
name = "Shedaniel cloth"
url = "https://maven.shedaniel.me/"
content {
includeGroup("dev.architectury")
includeGroup("me.shedaniel.cloth")
}
}
maven {
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage")
credentials {
username = "anything"
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX"
}
content {
includeModule("com.refinedmods", "refinedstorage")
}
}
maven {
name = 'Kotlin for Forge'
url = 'https://thedarkcolour.github.io/KotlinForForge/'
content {
includeModule("thedarkcolour", "kotlinforforge")
}
}
maven {
url = "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven {
name = "Intelligence repository"
url = "https://mvn.intelligence-modding.de/Intelligence"
}
}

configurations {
Expand Down Expand Up @@ -594,4 +613,4 @@ publishing {
}
}
}
}
}
12 changes: 8 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ pluginManagement {
maven {
name = 'NeoForged'
url = 'https://maven.neoforged.net/releases'
}
maven {
name = "Intelligence Minecraft"
url = "https://mvn.intelligence-modding.de/Minecraft"

content {
includeGroup("net.minecraftforge")
includeGroup("net.neoforged.gradle")
includeGroup("net.neoforged")
includeGroup("org.spongepowered.mixin")
includeGroup("org.spongepowered")
}
}
}
}
Expand Down

0 comments on commit f688819

Please sign in to comment.