Delete build.gradle.kts

This commit is contained in:
AidanTheBandit 2022-09-02 23:05:59 -04:00 committed by GitHub
parent 0c2451dd31
commit 837542dafb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,31 +0,0 @@
plugins {
id("java")
id("com.github.johnrengelman.shadow") version "7.1.2"
}
val numberVersion = "5.0.0"
group = "net.ellibot.ellie"
version = "5.0.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://m2.dv8tion.net/releases")
maven("https://jitpack.io")
}
dependencies {
implementation(group = "net.dv8tion", name = "JDA", version = "5.0.0-alpha.17") {
exclude(module = "opus-java")
}
implementation(group = "ch.qos.logback", name = "logback-classic", version = "1.2.10")
implementation(group = "com.github.JDA-Applications", name = "JDA-Utilities", version = "804d58a") {
// This is fine
exclude(module = "jda-utilities-examples")
exclude(module = "jda-utilities-doc")
exclude(module = "jda-utilities-command")
exclude(module = "jda-utilities-menu")
exclude(module = "jda-utilities-oauth2")
}
}