2022-05-25 01:58:53 +00:00
|
|
|
rootProject.name = "AQuest"
|
2022-01-06 18:05:33 +00:00
|
|
|
|
2025-11-17 23:19:41 +00:00
|
|
|
val nexusUser = providers.gradleProperty("alttdSnapshotUsername").orNull ?: System.getenv("NEXUS_USERNAME")
|
|
|
|
|
val nexusPass = providers.gradleProperty("alttdSnapshotPassword").orNull ?: System.getenv("NEXUS_PASSWORD")
|
|
|
|
|
|
2022-01-06 18:05:33 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
2025-11-17 23:19:41 +00:00
|
|
|
maven {
|
|
|
|
|
url = uri("https://repo.alttd.com/repository/alttd-snapshot/")
|
|
|
|
|
credentials {
|
|
|
|
|
username = nexusUser
|
|
|
|
|
password = nexusPass
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-06-28 01:33:39 +00:00
|
|
|
maven("https://repo.destro.xyz/snapshots") // Altitude - Cosmos
|
2022-05-21 00:38:34 +00:00
|
|
|
maven("https://jitpack.io") { // Vault
|
|
|
|
|
content { includeGroup("com.github.milkbowl") }
|
|
|
|
|
}
|
2022-01-06 18:05:33 +00:00
|
|
|
}
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|