Boosters/api/build.gradle.kts

24 lines
671 B
Plaintext
Raw Normal View History

2021-09-06 17:35:04 +00:00
plugins {
`maven-publish`
}
dependencies {
2022-09-09 17:56:14 +00:00
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT")
2021-12-25 17:05:07 +00:00
compileOnly("org.spongepowered:configurate-yaml:4.1.2") // Configurate
compileOnly("net.luckperms:api:5.3") // Luckperms
//Jackson (json)
compileOnly("com.fasterxml.jackson.core:jackson-core:2.8.8")
compileOnly("com.fasterxml.jackson.core:jackson-annotations:2.8.8")
compileOnly("com.fasterxml.jackson.core:jackson-databind:2.8.8")
2021-09-06 17:35:04 +00:00
}
2021-12-25 17:05:07 +00:00
publishing {
repositories{
maven {
name = "maven"
url = uri("https://repo.destro.xyz/snapshots")
credentials(PasswordCredentials::class)
}
}
}