2024-05-04 02:35:33 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.minecraftforge.net/") {
|
|
|
|
name = "MinecraftForge"
|
|
|
|
}
|
|
|
|
maven("https://maven.architectury.dev/") {
|
|
|
|
name = "Architectury"
|
|
|
|
}
|
|
|
|
maven("https://repo.spongepowered.org/repository/maven-public")
|
|
|
|
maven("https://maven.parchmentmc.org")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-22 00:23:56 +01:00
|
|
|
plugins {
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version("0.9.0")
|
|
|
|
}
|
|
|
|
|
2024-05-04 02:35:33 +02:00
|
|
|
rootProject.name = "Flywheel"
|
|
|
|
|
|
|
|
include("common")
|
|
|
|
include("fabric")
|
|
|
|
include("forge")
|
2025-01-12 22:02:50 +01:00
|
|
|
include("vanillinForge")
|
|
|
|
include("vanillinFabric")
|