2021-12-11 17:59:45 +00:00
|
|
|
plugins {
|
|
|
|
|
`maven-publish`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2026-07-18 18:21:25 +00:00
|
|
|
implementation(project(":web-api")) // Web-API
|
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.46")
|
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.46")
|
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
|
2026-07-19 21:00:40 +00:00
|
|
|
|
|
|
|
|
//API validation
|
|
|
|
|
implementation("org.hibernate.validator:hibernate-validator:9.0.1.Final")
|
|
|
|
|
implementation("org.glassfish:jakarta.el:5.0.0-M1")
|
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
|
|
|
}
|