Ascension/i18n/build.gradle
2024-04-13 17:05:59 +03:00

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