Switch to Cosmos

This commit is contained in:
Len 2025-06-15 09:01:19 +02:00
parent 4fd2c55be6
commit 646d0fae3f

View File

@ -12,7 +12,7 @@ plugins {
}
group = "com.alttd.playershops"
version = System.getenv("BUILD_NUMBER") ?: "1.2-SNAPSHOT"
version = System.getenv("BUILD_NUMBER") ?: "1.3-SNAPSHOT"
description = "Player Shop plugin for Altitude."
apply<JavaLibraryPlugin>()
@ -34,14 +34,13 @@ tasks {
}
runServer {
// runDirectory.set(File("./run1"))
val fileName = "./run/galaxy.jar"
val fileName = "./run/cosmos.jar"
val file = File(fileName)
if (!file.parentFile.exists()) {
file.parentFile.mkdirs()
}
if (!file.exists()) {
download("https://jenkins.destro.xyz/job/Galaxy/lastSuccessfulBuild/artifact/build/libs/Galaxy-paperclip-1.21-R0.1-SNAPSHOT-reobf.jar", fileName)
download("https://jenkins.destro.xyz/job/Cosmos/lastSuccessfulBuild/artifact/cosmos-server/build/libs/cosmos-bundler-1.21.6-R0.1-SNAPSHOT-mojmap.jar", fileName)
}
serverJar(file)
minecraftVersion("1.21")
@ -71,7 +70,7 @@ publishing {
}
dependencies {
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT")
compileOnly("com.alttd.cosmos:cosmos-api:1.21.6-R0.1-SNAPSHOT")
compileOnly("com.github.milkbowl:VaultAPI:1.7") {
exclude("org.bukkit","bukkit")
}