2021-12-11 17:59:45 +00:00
|
|
|
plugins {
|
|
|
|
|
`maven-publish`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2022-09-02 08:22:34 +00:00
|
|
|
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT") {
|
2022-05-30 16:47:19 +00:00
|
|
|
// exclude("net.kyori")
|
|
|
|
|
}
|
2021-12-11 17:59:45 +00:00
|
|
|
compileOnly("org.spongepowered:configurate-yaml:4.1.2") // Configurate
|
|
|
|
|
compileOnly("net.luckperms:api:5.3") // Luckperms
|
2024-03-24 15:58:09 +00:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
|
|
|
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.0")
|
|
|
|
|
testImplementation("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT")
|
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)
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-24 15:58:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.test {
|
|
|
|
|
useJUnitPlatform()
|
2021-12-11 17:59:45 +00:00
|
|
|
}
|