2021-12-11 17:59:45 +00:00
|
|
|
plugins {
|
|
|
|
|
`maven-publish`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-03-21 19:34:45 +00:00
|
|
|
// compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") {
|
2024-07-19 19:09:26 +00:00
|
|
|
// exclude("net.kyori")
|
2025-03-21 19:34:45 +00:00
|
|
|
// }
|
|
|
|
|
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
|
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
|
|
|
}
|