-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (32 loc) · 1.39 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
plugins {
id'java'
id'application'
id "com.github.johnrengelman.shadow" version "7.0.0"
}
mainClassName = 'me.trackrunny.jdalearning.Bot'
version '1.42.10'
sourceCompatibility = JavaVersion.VERSION_1_8
compileJava.options.encoding = 'UTF-8'
repositories {
jcenter()
}
dependencies {
implementation group: 'net.dv8tion', name: 'JDA', version: '4.2.0_247'
implementation group: 'com.jagrosh', name: 'jda-utilities', version: '3.0.5'
implementation group: 'me.duncte123', name: 'botCommons', version: '2.0.122'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
implementation group: 'org.menudocs', name: 'paste-client-java', version: '1.1.1'
implementation group: 'io.github.cdimascio', name: 'java-dotenv', version: '5.2.2'
implementation group: 'io.ipinfo', name: 'ipinfo-api', version: '1.1'
implementation group: 'net.explodingbus' + 'h.KSoft4J', name: 'KSoft4J', version: '1.0.6'
implementation group: 'com.zaxxer', name: 'HikariCP', version: '4.0.3'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.34.0'
implementation group: 'com.github.ricksbrown', name: 'cowsay', version: '1.1.0'
implementation group: 'com.github.ricksbrown', name: 'cowjar-extra', version: '1.1.0'
}
shadowJar {
dependencies {
exclude(dependency("org.slf4j:slf4j-simple:1.7.30"))
}
mergeServiceFiles()
}