-
Notifications
You must be signed in to change notification settings - Fork 53
/
settings.gradle.kts
31 lines (27 loc) · 1.01 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
gradlePluginPortal()
}
}
rootProject.name = "ValioBungee"
fun configureProject(name: String, path: String) {
include(name)
project(name).projectDir = file(path)
}
configureProject(":RedisBungee-API", "api")
configureProject(":RedisBungee-Commands", "commands")
configureProject(":RedisBungee-Velocity", "proxies/velocity")
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/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://jitpack.io")
}
}