24 lines
538 B
Groovy
24 lines
538 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
name = 'Fabric'
|
|
url = 'https://maven.fabricmc.net/'
|
|
}
|
|
maven { url "https://maven.architectury.dev/" }
|
|
maven { url "https://repo1.maven.org/maven2/" }
|
|
maven {
|
|
url = 'https://maven.minecraftforge.net/'
|
|
content {
|
|
excludeGroupByRegex "org.eclipse.*"
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
include("common")
|
|
include("fabric")
|
|
include("forge")
|
|
|
|
rootProject.name = "Flan"
|