[ci skip] Add a test plugin (#6133)

This commit is contained in:
Jason Penilla
2021-07-09 03:04:33 -07:00
parent 43e9be4586
commit 5fe7fbd769
6 changed files with 51 additions and 1 deletions

View File

@@ -8,3 +8,10 @@ pluginManagement {
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")
}