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:common-server')) implementation(project(':common:common-proxy')) // 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 'org.spongepowered:configurate-yaml:' + rootProject.configurateVersion api 'org.spongepowered:configurate-hocon:' + rootProject.configurateVersion } application { mainClass = 'com.discordsrv.config.DiscordSRVTranslation' }