mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2024-11-10 12:34:11 +01:00
f25d66680e
- Port to kotlin gradle
26 lines
629 B
Plaintext
26 lines
629 B
Plaintext
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")
|
|
}
|
|
|
|
plugins {
|
|
val arch_loom_version: String by settings
|
|
id("dev.architectury.loom") version arch_loom_version
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Flywheel"
|
|
|
|
include("common")
|
|
include("fabric")
|
|
include("forge")
|