blob: d6037036b6562ddafff45de33229bd7ac7cec369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://papermc.io/repo/repository/maven-public/")
}
}
rootProject.name = "Paper"
include("Paper-API", "Paper-Server", "Paper-MojangAPI")
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")
}
|