2021-12-11 17:59:45 +00:00
|
|
|
plugins {
|
|
|
|
|
`maven-publish`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-07-29 17:10:20 +00:00
|
|
|
// Cosmos
|
2025-07-29 20:54:06 +00:00
|
|
|
compileOnly("com.alttd.cosmos:cosmos-api:1.21.8-R0.1-SNAPSHOT") {
|
2025-07-29 17:10:20 +00:00
|
|
|
isChanging = true
|
|
|
|
|
}
|
2025-06-20 21:26:54 +00:00
|
|
|
compileOnly("org.spongepowered:configurate-yaml:4.2.0") // Configurate
|
|
|
|
|
compileOnly("net.luckperms:api:5.5") // Luckperms
|
2021-12-11 17:59:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
|
publications {
|
|
|
|
|
create<MavenPublication>("mavenJava") {
|
|
|
|
|
from(components["java"])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-20 21:26:54 +00:00
|
|
|
repositories {
|
2021-12-11 17:59:45 +00:00
|
|
|
maven {
|
|
|
|
|
name = "maven"
|
|
|
|
|
url = uri("https://repo.destro.xyz/snapshots")
|
|
|
|
|
credentials(PasswordCredentials::class)
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-21 19:34:45 +00:00
|
|
|
}
|