Update to 26.2

This commit is contained in:
Len 2026-08-01 02:55:59 -05:00
parent 97b02608e4
commit 39d0672537
2 changed files with 18 additions and 3 deletions

View File

@ -19,8 +19,6 @@ tasks {
} }
dependencies { dependencies {
compileOnly("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT") { compileOnly("com.alttd.cosmos:cosmos-api:26.2.build.17-stable")
isChanging = true
}
compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT") compileOnly("com.alttd.datalock:api:1.1.0-SNAPSHOT")
} }

View File

@ -1,9 +1,26 @@
rootProject.name = "BlacklistFromWorld" rootProject.name = "BlacklistFromWorld"
val nexusUser = providers.gradleProperty("alttdSnapshotUsername").orNull ?: System.getenv("NEXUS_USERNAME")
val nexusPass = providers.gradleProperty("alttdSnapshotPassword").orNull ?: System.getenv("NEXUS_PASSWORD")
dependencyResolutionManagement { dependencyResolutionManagement {
repositories { repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
maven {
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
}
}
maven("https://repo.destro.xyz/snapshots") // Altitude - Cosmos maven("https://repo.destro.xyz/snapshots") // Altitude - Cosmos
maven("https://jitpack.io") { // Vault maven("https://jitpack.io") { // Vault
content { includeGroup("com.github.milkbowl") } content { includeGroup("com.github.milkbowl") }