-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
26 lines (20 loc) · 940 Bytes
/
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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
mainClassName = 'com.myra.dev.marian.Bot'
version '1.1.0'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
repositories {
jcenter()
}
dependencies {
compile group: 'net.dv8tion', name: 'JDA', version: '4.2.0_227' // JDA
compile group: 'com.jagrosh', name: 'jda-utilities', version: '3.0.5' // JDA Utilities
compile group: 'com.sedmelluq', name: 'lavaplayer', version: '1.3.64' // Lava player
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.12.7' // MongoDB Java Driver uber-artifact, legacy driver, mongodb-driver, mongodb-driver-core abd bson https://mvnrepository.com/artifact/org.mongodb/mongo-java-driver
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3' // Logback classic
}
compileJava.options.encoding = 'UTF-8'