32 lines
784 B
Plaintext
32 lines
784 B
Plaintext
plugins {
|
|
`maven-publish`
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":web-api")) // Web-API
|
|
compileOnly("org.projectlombok:lombok:1.18.46")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.46")
|
|
// Cosmos
|
|
compileOnly("com.alttd.cosmos:cosmos-api:1.21.8-R0.1-SNAPSHOT") {
|
|
isChanging = true
|
|
}
|
|
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)
|
|
}
|
|
}
|
|
}
|