Update to 1.21.6 using cosmos

This commit is contained in:
2025-06-28 04:20:13 +02:00
parent f9c4ff1b1c
commit 5ced572237
7 changed files with 72 additions and 47 deletions
+8 -5
View File
@@ -3,7 +3,7 @@ plugins {
}
dependencies {
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21.6-R0.1-SNAPSHOT")
}
tasks {
@@ -21,9 +21,12 @@ publishing {
repositories{
maven {
name = "maven"
url = uri("https://repo.destro.xyz/snapshots")
credentials(PasswordCredentials::class)
name = "nexus"
url = uri("https://repo.alttd.com/repository/alttd-snapshot/")
credentials {
username = project.property("alttdDevPublishUser") as String
password = project.property("alttdDevPublishPass") as String
}
}
}
}
}