1
0
Fork 0
This repository has been archived on 2024-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
Ellie-bot/build.gradle.kts

31 lines
901 B
Text
Raw Normal View History

2022-08-05 17:48:31 -07:00
plugins {
id("java")
2022-08-05 19:44:33 -07:00
id("com.github.johnrengelman.shadow") version "7.1.2"
2022-08-05 17:48:31 -07:00
}
2022-08-05 19:44:33 -07:00
val numberVersion = "5.0.0"
2022-08-05 17:48:31 -07:00
group = "net.ellibot.ellie"
2022-08-05 19:44:33 -07:00
version = "5.0.0-SNAPSHOT"
2022-08-05 17:48:31 -07:00
repositories {
mavenCentral()
2022-08-05 19:44:33 -07:00
maven("https://m2.dv8tion.net/releases")
maven("https://jitpack.io")
2022-08-05 17:48:31 -07:00
}
dependencies {
2022-08-05 19:44:33 -07:00
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")
}
2022-08-05 17:48:31 -07:00
}