Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2024-11-06 00:00:47 +01:00
19 Zeilen
392 B
Plaintext
19 Zeilen
392 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
|
|
}
|
|
|
|
rootProject.name = "velocity"
|
|
include(
|
|
"api",
|
|
"proxy",
|
|
"native"
|
|
)
|
|
findProject(":api")?.name = "velocity-api"
|
|
findProject(":proxy")?.name = "velocity-proxy"
|
|
findProject(":native")?.name = "velocity-native" |