mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2026-03-21 23:40:46 +00:00
25 lines
583 B
Plaintext
25 lines
583 B
Plaintext
@file:Suppress("UnstableApiUsage")
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "ValioBungee"
|
|
|
|
fun configureProject(name: String, path: String) {
|
|
include(name)
|
|
project(name).projectDir = file(path)
|
|
}
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots")
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|