mirror of
https://github.com/PaperMC/Folia.git
synced 2024-11-16 11:05:11 +01:00
17 lines
377 B
Plaintext
17 lines
377 B
Plaintext
import java.util.Locale
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "folia"
|
|
|
|
for (name in listOf("Folia-API", "Folia-Server")) {
|
|
val projName = name.lowercase(Locale.ENGLISH)
|
|
include(projName)
|
|
findProject(":$projName")!!.projectDir = file(name)
|
|
}
|