forked from MCDiamondFire/HelpBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (35 loc) · 1.03 KB
/
build.gradle
File metadata and controls
39 lines (35 loc) · 1.03 KB
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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
mainClassName = 'com.diamondfire.helpbot.HelpBot'
group 'com.diamondfire.helpbot'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
implementation ("net.dv8tion:JDA:4.3.0_305") {
exclude module: 'opus-java'
}
implementation 'club.minnced:discord-webhooks:0.5.8'
implementation 'ch.qos.logback:logback-classic:1.2.5'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
implementation 'com.github.Steveice10:MCProtocolLib:c5e4b66'
implementation group: 'mysql', name: 'mysql-connector-java', version: '5.1.13'
implementation group: 'org.codehaus.groovy', name: 'groovy-jsr223', version: '3.0.8'
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
build {
dependsOn {
shadowJar
}
}