2024-05-04 02:35:33 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
mavenCentral()
|
2024-05-05 17:05:33 +02:00
|
|
|
maven("https://maven.neoforged.net/releases/") {
|
|
|
|
name = "NeoForged"
|
2024-05-04 02:35:33 +02:00
|
|
|
}
|
|
|
|
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")
|
2024-11-13 22:29:27 +01:00
|
|
|
include("neoforge")
|
2025-01-18 02:22:26 +01:00
|
|
|
include("vanillinNeoForge")
|
2025-01-12 22:02:50 +01:00
|
|
|
include("vanillinFabric")
|