This repository has been archived by the owner on May 13, 2021. It is now read-only.
forked from ToxicMushroom/Melijn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (38 loc) · 1.48 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
mainClassName = 'me.melijn.jda.Melijn'
version = '1.1'
sourceCompatibility = 10.0
repositories {
jcenter()
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
compile 'com.sedmelluq:jda-nas:1.0.6'
compile "com.zaxxer:HikariCP:3.2.0"
compile('net.dv8tion:JDA:3.8.0_430') {
exclude module: 'opus-java'
}
compile 'com.sedmelluq:lavaplayer:1.3.7'
compile 'me.duncte123:weebJava:2.1.0'
compile 'mysql:mysql-connector-java:8.0.12'
compile 'com.github.natanbc:lavadsp:0.4'
compile 'com.github.DiscordBotList:DBL-Java-Library:d0ca7283e55def0f828ee33c0c2bf86266223854'
compile 'se.michaelthelin.spotify:spotify-web-api-java:2.0.5'
compile 'org.kohsuke:groovy-sandbox:1.6'
compile group: 'com.google.guava', name: 'guava', version: '26.0-jre'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.11.1'
compile(group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.0.5.RELEASE') {
exclude module: 'spring-boot-starter-logging'
}
compile group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: '2.0.5.RELEASE'
}
compileJava.options.encoding = 'UTF-8'