Chat/api/build.gradle.kts

27 lines
601 B
Plaintext
Raw Normal View History

2021-12-11 17:59:45 +00:00
plugins {
`maven-publish`
}
dependencies {
2024-07-27 20:33:39 +00:00
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") {
// exclude("net.kyori")
2022-05-30 16:47:19 +00:00
}
2021-12-11 17:59:45 +00:00
compileOnly("org.spongepowered:configurate-yaml:4.1.2") // Configurate
compileOnly("net.luckperms:api:5.3") // Luckperms
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
repositories{
maven {
name = "maven"
url = uri("https://repo.destro.xyz/snapshots")
credentials(PasswordCredentials::class)
}
}
}