Ascension/i18n/build.gradle
2025-01-02 22:54:10 +02:00

24 lines
629 B
Groovy

plugins {
id 'application'
}
// 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(':velocity')) { transitive = false }
api(libs.configurate.yaml)
api(libs.configurate.jackson)
}
application {
mainClass = 'com.discordsrv.config.DiscordSRVTranslation'
}