mirror of
https://github.com/chylex/Better-Controls.git
synced 2025-05-08 19:34:04 +02:00
24 lines
533 B
Plaintext
24 lines
533 B
Plaintext
rootProject.name = "Better-Controls"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven(url = "https://maven.fabricmc.net/") { name = "Fabric" }
|
|
maven(url = "https://repo.spongepowered.org/repository/maven-public/") { name = "Sponge Snapshots" }
|
|
}
|
|
|
|
plugins {
|
|
if (settings.extra.has("loomVersion")) {
|
|
id("fabric-loom") version "${settings.extra["loomVersion"]}-SNAPSHOT"
|
|
}
|
|
}
|
|
}
|
|
|
|
if (settings.extra.has("forgeVersion")) {
|
|
include("Forge")
|
|
}
|
|
|
|
if (settings.extra.has("fabricVersion")) {
|
|
include("Fabric")
|
|
}
|