More stuff
This commit is contained in:
parent
2e7ad3f1d3
commit
f11fe05859
8 changed files with 41 additions and 2 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -16,5 +16,15 @@
|
|||
<option name="name" value="MavenRepo" />
|
||||
<option name="url" value="https://repo.maven.apache.org/maven2/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="maven" />
|
||||
<option name="name" value="maven" />
|
||||
<option name="url" value="https://m2.dv8tion.net/releases" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="maven2" />
|
||||
<option name="name" value="maven2" />
|
||||
<option name="url" value="https://jitpack.io" />
|
||||
</remote-repository>
|
||||
</component>
|
||||
</project>
|
|
@ -1,14 +1,31 @@
|
|||
plugins {
|
||||
id("java")
|
||||
id("com.github.johnrengelman.shadow") version "7.1.2"
|
||||
}
|
||||
|
||||
val numberVersion = "5.0.0"
|
||||
|
||||
group = "net.ellibot.ellie"
|
||||
version = "1.0-SNAPSHOT"
|
||||
version = "5.0.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
maven("https://m2.dv8tion.net/releases")
|
||||
maven("https://jitpack.io")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.dv8tion:JDA:5.0.0-alpha.17")
|
||||
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")
|
||||
}
|
||||
}
|
12
src/main/resources/logback.xml
Normal file
12
src/main/resources/logback.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<encoder>
|
||||
<pattern>%d{HH:mm:ss.SSS} %boldCyan(%-34.-34thread) %red(%10.10X{jda.shard}) %boldGreen(%-15.-15logger{0}) %highlight(%-6level) %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<root level="info">
|
||||
<appender-ref ref="STFOUT" />
|
||||
</root>
|
||||
</configuration>
|
Reference in a new issue