Specify maven repo groups
This commit is contained in:
parent
a7b45671f5
commit
e3cc740a93
@ -304,6 +304,24 @@ repositories {
|
||||
|
||||
maven {
|
||||
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 {
|
||||
@ -314,31 +332,16 @@ repositories {
|
||||
}
|
||||
}
|
||||
|
||||
mavenCentral()
|
||||
|
||||
maven {
|
||||
name = "Progwml6 maven"
|
||||
url = uri("https://dvs1.progwml6.com/files/maven/")
|
||||
|
||||
content {
|
||||
includeGroup("mezz.jei")
|
||||
}
|
||||
}
|
||||
|
||||
maven {
|
||||
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/")
|
||||
}
|
||||
// mavenCentral()
|
||||
}
|
||||
|
||||
fun org.gradle.jvm.tasks.Jar.attachManifest() {
|
||||
|
@ -4,6 +4,7 @@ org.gradle.jvmargs=-Xmx3G
|
||||
org.gradle.daemon=true
|
||||
kotlin.stdlib.default.dependency=false
|
||||
org.gradle.vfs.watch=true
|
||||
org.gradle.caching=true
|
||||
|
||||
mod_id=overdrive_that_matters
|
||||
mod_version=1.0
|
||||
|
@ -14,7 +14,13 @@ pluginManagement {
|
||||
buildscript {
|
||||
repositories {
|
||||
// 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()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user