mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2024-11-01 08:39:31 +01:00
30 lines
806 B
Groovy
30 lines
806 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
// Required due to the sponge plugin
|
|
maven { url 'https://repo.spongepowered.org/maven/' }
|
|
}
|
|
|
|
// Don't need to be versioned, so we remove the version here to reduce the complexity of the CI
|
|
version = null
|
|
|
|
dependencies {
|
|
implementation(project(':common:common-api'))
|
|
implementation(project(':common'))
|
|
|
|
// Depend on all platforms for configs
|
|
implementation(project(':bukkit')) { transitive = false }
|
|
implementation(project(':bungee')) { transitive = false }
|
|
implementation(project(':sponge')) { transitive = false }
|
|
implementation(project(':velocity')) { transitive = false }
|
|
|
|
api(libs.configurate.yaml)
|
|
api(libs.configurate.hocon)
|
|
}
|
|
|
|
application {
|
|
mainClass = 'com.discordsrv.config.DiscordSRVTranslation'
|
|
}
|