Paper/settings.gradle.kts

22 lines
471 B
Plaintext
Raw Normal View History

pluginManagement {
repositories {
gradlePluginPortal()
2021-06-14 19:02:30 +00:00
maven("https://papermc.io/repo/repository/maven-public/")
}
}
rootProject.name = "Paper"
2021-11-23 08:57:41 +00:00
include(
"Paper-API",
"Paper-Server",
2021-11-24 01:09:12 +00:00
"Paper-MojangAPI",
2021-11-23 08:57:41 +00:00
)
2021-07-09 10:04:33 +00:00
val testPlugin = file("test-plugin.settings.gradle.kts")
if (testPlugin.exists()) {
apply(from = testPlugin)
} else {
testPlugin.writeText("// Uncomment to enable the test plugin module\n//include(\":test-plugin\")\n")
}