2023-07-21 19:22:03 +00:00
|
|
|
rootProject.name = "AltitudeTag"
|
|
|
|
|
|
2026-07-24 15:31:49 +00:00
|
|
|
val nexusUser = providers.gradleProperty("alttdSnapshotUsername").orNull ?: System.getenv("NEXUS_USERNAME")
|
|
|
|
|
val nexusPass = providers.gradleProperty("alttdSnapshotPassword").orNull ?: System.getenv("NEXUS_PASSWORD")
|
|
|
|
|
|
2023-07-21 19:22:03 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositories {
|
2023-07-21 20:16:36 +00:00
|
|
|
mavenLocal()
|
2023-07-21 19:22:03 +00:00
|
|
|
mavenCentral()
|
2025-08-03 15:28:27 +00:00
|
|
|
maven {
|
2026-07-24 15:31:49 +00:00
|
|
|
url = uri("https://repo.alttd.com/repository/alttd-snapshot/")
|
|
|
|
|
credentials {
|
|
|
|
|
username = nexusUser
|
|
|
|
|
password = nexusPass
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
maven {
|
|
|
|
|
url = uri("https://repo.alttd.com/repository/alttd/")
|
|
|
|
|
credentials {
|
|
|
|
|
username = nexusUser
|
|
|
|
|
password = nexusPass
|
|
|
|
|
}
|
2025-08-03 15:28:27 +00:00
|
|
|
}
|
|
|
|
|
maven("https://repo.destro.xyz/snapshots")
|
2023-07-21 19:22:03 +00:00
|
|
|
maven("https://repo.codemc.io/repository/maven-public/")
|
2024-07-21 13:21:59 +00:00
|
|
|
maven("https://jitpack.io/")
|
2023-07-21 19:22:03 +00:00
|
|
|
maven("https://repo.maven.apache.org/maven2/")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|