mirror of
https://github.com/PaperMC/Folia.git
synced 2024-11-25 12:35:23 +01:00
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
import java.util.Locale
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
|
|
}
|
|
|
|
rootProject.name = "folia"
|
|
|
|
for (name in listOf("Folia-API", "Folia-Server")) {
|
|
val projName = name.lowercase(Locale.ENGLISH)
|
|
include(projName)
|
|
findProject(":$projName")!!.projectDir = file(name)
|
|
}
|