Files
tweed5/tweed5-minecraft/buildSrc/settings.gradle.kts

33 lines
615 B
Kotlin

plugins {
id("dev.panuszewski.typesafe-conventions") version "0.9.1"
}
typesafeConventions {
autoPluginDependencies = false
}
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
maven {
name = "Siphalor"
url = uri("https://maven.siphalor.de")
mavenContent {
includeGroupAndSubgroups("de.siphalor")
}
}
maven {
name = "FabricMC"
url = uri("https://maven.fabricmc.net")
mavenContent {
includeGroupAndSubgroups("net.fabricmc")
includeGroup("fabric-loom")
}
}
}
}
includeBuild("../../conventions")
rootProject.name = "tweed5-minecraft-conventions"