Update Cosmos API dependency and configure Altitude snapshot repository
This commit is contained in:
parent
42c9530348
commit
26b1e6f46c
|
|
@ -37,7 +37,7 @@ tasks {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Cosmos
|
// Cosmos
|
||||||
compileOnly("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT") {
|
compileOnly("com.alttd.cosmos:cosmos-api:1.21.10-R0.1-SNAPSHOT") {
|
||||||
isChanging = true
|
isChanging = true
|
||||||
}
|
}
|
||||||
// Lombok
|
// Lombok
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,21 @@
|
||||||
|
import org.gradle.kotlin.dsl.maven
|
||||||
|
|
||||||
|
val nexusUser = providers.gradleProperty("alttdSnapshotUsername").orNull ?: System.getenv("NEXUS_USERNAME")
|
||||||
|
val nexusPass = providers.gradleProperty("alttdSnapshotPassword").orNull ?: System.getenv("NEXUS_PASSWORD")
|
||||||
|
|
||||||
rootProject.name = "AltitudeParticles"
|
rootProject.name = "AltitudeParticles"
|
||||||
|
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://repo.alttd.com/repository/alttd-snapshot/")
|
||||||
|
credentials {
|
||||||
|
username = nexusUser
|
||||||
|
password = nexusPass
|
||||||
|
}
|
||||||
|
}
|
||||||
maven("https://repo.destro.xyz/snapshots") // Galaxy
|
maven("https://repo.destro.xyz/snapshots") // Galaxy
|
||||||
maven("https://papermc.io/repo/repository/maven-public/") // Paper
|
maven("https://papermc.io/repo/repository/maven-public/") // Paper
|
||||||
maven("https://jitpack.io") //PremiumVanish
|
maven("https://jitpack.io") //PremiumVanish
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user