Chat/api/build.gradle.kts

32 lines
904 B
Plaintext
Raw Permalink Normal View History

2021-12-11 17:59:45 +00:00
plugins {
`maven-publish`
}
dependencies {
2022-02-24 16:16:32 +00:00
compileOnly("com.alttd:Galaxy-API:1.18.1-R0.1-SNAPSHOT") {
exclude("net.kyori.adventure.text.minimessag")
}
2022-02-23 15:13:53 +00:00
compileOnly("net.kyori", "adventure-text-minimessage", "4.10.0-20220122.015731-43") { // Minimessage
exclude("net.kyori")
exclude("net.kyori.examination")
}
2021-12-11 17:59:45 +00:00
compileOnly("org.spongepowered:configurate-yaml:4.1.2") // Configurate
compileOnly("net.luckperms:api:5.3") // Luckperms
2022-02-23 14:50:21 +00:00
compileOnly(files("../libs/minimessage-4.10.0-SNAPSHOT.jar")) // Workaround for minimessage
2021-12-11 17:59:45 +00:00
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
repositories{
maven {
name = "maven"
url = uri("https://repo.destro.xyz/snapshots")
credentials(PasswordCredentials::class)
}
}
}