9
0
mirror of https://github.com/Winds-Studio/Leaf.git synced 2025-12-19 15:09:25 +00:00

Initial Leaf 1.19.3

This commit is contained in:
Dreeam
2022-12-20 12:31:01 -05:00
parent c2693ea49d
commit fcd4bc6648
58 changed files with 6034 additions and 11 deletions

15
settings.gradle.kts Normal file
View File

@@ -0,0 +1,15 @@
import java.util.Locale
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.papermc.io/repository/maven-public/")
}
}
rootProject.name = "leaf"
for (name in listOf("Leaf-API", "Leaf-Server")) {
val projName = name.toLowerCase(Locale.ENGLISH)
include(projName)
findProject(":$projName")!!.projectDir = file(name)
}