29 lines
672 B
Plaintext
29 lines
672 B
Plaintext
plugins {
|
|
`maven-publish`
|
|
}
|
|
|
|
dependencies {
|
|
// compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") {
|
|
// exclude("net.kyori")
|
|
// }
|
|
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
|
|
compileOnly("org.spongepowered:configurate-yaml:4.2.0") // Configurate
|
|
compileOnly("net.luckperms:api:5.5") // Luckperms
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("mavenJava") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "maven"
|
|
url = uri("https://repo.destro.xyz/snapshots")
|
|
credentials(PasswordCredentials::class)
|
|
}
|
|
}
|
|
}
|