Specify maven repo groups

This commit is contained in:
DBotThePony 2022-10-12 20:55:29 +07:00
parent a7b45671f5
commit e3cc740a93
Signed by: DBot
GPG Key ID: DCC23B5715498507
3 changed files with 31 additions and 21 deletions

View File

@ -304,6 +304,24 @@ repositories {
maven { maven {
url = uri("https://maven.dbotthepony.ru") url = uri("https://maven.dbotthepony.ru")
content {
includeGroup("top.theillusivec4.curios")
includeGroup("yalter.mousetweaks")
includeGroup("mekanism")
includeGroup("lain.mods.cos")
}
}
maven {
name = "Kotlin for Forge"
url = uri("https://thedarkcolour.github.io/KotlinForForge/")
content {
includeGroup("thedarkcolour")
includeGroup("org.jetbrains.kotlin")
includeGroup("org.jetbrains.kotlinx")
}
} }
maven { maven {
@ -314,31 +332,16 @@ repositories {
} }
} }
mavenCentral()
maven { maven {
name = "Progwml6 maven" name = "Progwml6 maven"
url = uri("https://dvs1.progwml6.com/files/maven/") url = uri("https://dvs1.progwml6.com/files/maven/")
content {
includeGroup("mezz.jei")
}
} }
maven { // mavenCentral()
name = "ModMaven"
url = uri("https://modmaven.dev")
}
maven {
name = "tterrag maven"
url = uri("https://maven.tterrag.com/")
}
maven {
url = uri("https://maven.k-4u.nl")
}
maven {
name = "Kotlin for Forge"
url = uri("https://thedarkcolour.github.io/KotlinForForge/")
}
} }
fun org.gradle.jvm.tasks.Jar.attachManifest() { fun org.gradle.jvm.tasks.Jar.attachManifest() {

View File

@ -4,6 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=true org.gradle.daemon=true
kotlin.stdlib.default.dependency=false kotlin.stdlib.default.dependency=false
org.gradle.vfs.watch=true org.gradle.vfs.watch=true
org.gradle.caching=true
mod_id=overdrive_that_matters mod_id=overdrive_that_matters
mod_version=1.0 mod_version=1.0

View File

@ -14,7 +14,13 @@ pluginManagement {
buildscript { buildscript {
repositories { repositories {
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below // These repositories are only for Gradle plugins, put any other repositories in the repository block further below
maven(url = "https://maven.minecraftforge.net") maven(url = "https://maven.minecraftforge.net") {
content {
includeGroup("net.minecraftforge.gradle")
includeGroup("net.minecraftforge")
}
}
mavenCentral() mavenCentral()
} }