2021-12-11 17:59:45 +00:00
|
|
|
rootProject.name = "Chat"
|
|
|
|
|
|
|
|
|
|
include(":api")
|
|
|
|
|
include(":galaxy")
|
|
|
|
|
include(":velocity")
|
|
|
|
|
|
2025-03-21 19:34:45 +00:00
|
|
|
val nexusUser = providers.gradleProperty("alttdSnapshotUsername").get()
|
|
|
|
|
val nexusPass = providers.gradleProperty("alttdSnapshotPassword").get()
|
|
|
|
|
|
2021-12-11 17:59:45 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositories {
|
2022-02-19 14:14:41 +00:00
|
|
|
// mavenLocal()
|
2021-12-11 17:59:45 +00:00
|
|
|
mavenCentral()
|
2025-07-29 20:54:06 +00:00
|
|
|
maven("https://repo.alttd.com/snapshots") // Altitude - Galaxy
|
2022-03-14 15:48:35 +00:00
|
|
|
maven("https://oss.sonatype.org/content/groups/public/") // Adventure
|
2022-02-23 15:13:53 +00:00
|
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots/") // Minimessage
|
2022-02-17 08:32:02 +00:00
|
|
|
maven("https://nexus.velocitypowered.com/repository/") // Velocity
|
2021-12-11 17:59:45 +00:00
|
|
|
maven("https://nexus.velocitypowered.com/repository/maven-public/") // Velocity
|
|
|
|
|
maven("https://repo.spongepowered.org/maven") // Configurate
|
|
|
|
|
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/") // Papi
|
|
|
|
|
maven("https://jitpack.io")
|
2025-03-21 19:34:45 +00:00
|
|
|
maven {
|
|
|
|
|
name = "nexus"
|
|
|
|
|
url = uri("https://repo.alttd.com/repository/alttd-snapshot/")
|
|
|
|
|
credentials {
|
|
|
|
|
username = nexusUser
|
|
|
|
|
password = nexusPass
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-11 17:59:45 +00:00
|
|
|
}
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|