2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

rewrite init

This commit is contained in:
2026-03-26 15:53:40 +04:00
parent 4221ebb892
commit 5e4b151d44
104 changed files with 959 additions and 7185 deletions

View File

@@ -7,24 +7,15 @@ pluginManagement {
rootProject.name = "ValioBungee"
fun configureProject(name: String, path: String) {
include(name)
project(name).projectDir = file(path)
fun configureProject(name: String) {
val projectName = ":valiobungee-$name"
include(projectName)
project(projectName).projectDir = file(name)
}
configureProject(":RedisBungee-API", "api")
configureProject(":RedisBungee-Lang", "lang")
configureProject(":RedisBungee-Commands", "commands")
configureProject(":RedisBungee-Bungee", "proxies/bungeecord/bungeecord-api")
configureProject(":RedisBungee-Proxy-Bungee", "proxies/bungeecord")
configureProject(":RedisBungee-Velocity", "proxies/velocity/velocity-api")
configureProject(":RedisBungee-Proxy-Velocity", "proxies/velocity")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
@@ -32,3 +23,5 @@ dependencyResolutionManagement {
maven("https://jitpack.io")
}
}
sequenceOf("core", "api").forEach{configureProject(it)}