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 {
|
2021-12-24 00:21:14 +01:00
|
|
|
implementation(project(':common:common-api'))
|
2022-12-18 22:15:24 +01:00
|
|
|
implementation(project(':common'))
|
2021-07-29 03:14:29 +02:00
|
|
|
|
|
|
|
// Depend on all platforms for configs
|
|
|
|
implementation(project(':bukkit')) { transitive = false }
|
2022-01-13 17:57:26 +01:00
|
|
|
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'
|
|
|
|
}
|