mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-23 03:17:53 +01:00
6bea04ffee
- Move common vanillin stuffs to a "vanillin" sourceset - Add vanillinForge and vanillinFabric subprojects - Mostly do gradling from scratch - Export remap jars from platform projects to `include` in vanillin projects
22 lines
547 B
Text
22 lines
547 B
Text
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")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Flywheel"
|
|
|
|
include("common")
|
|
include("fabric")
|
|
include("forge")
|
|
include("vanillinForge")
|
|
include("vanillinFabric")
|