2023-07-21 19:22:03 +00:00
|
|
|
rootProject.name = "AltitudeTag"
|
|
|
|
|
|
|
|
|
|
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 {
|
|
|
|
|
name = "AlttdNexus"
|
|
|
|
|
url = uri(
|
|
|
|
|
"https://repo.alttd.com/repository/alttd-snapshot/"
|
|
|
|
|
)
|
|
|
|
|
credentials(PasswordCredentials::class)
|
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
|
}
|
|
|
|
|
}
|