Ascension/i18n/build.gradle

29 lines
774 B
Groovy
Raw Normal View History

2021-07-29 03:14:29 +02:00
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'))
2021-07-29 03:14:29 +02:00
// 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 }
2021-07-29 03:14:29 +02:00
2022-04-22 19:56:11 +02:00
api(libs.configurate.yaml)
2021-07-29 03:14:29 +02:00
}
application {
mainClass = 'com.discordsrv.config.DiscordSRVTranslation'
}