-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (34 loc) · 918 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
apply plugin: 'com.github.johnrengelman.shadow'
group 'org.example'
version '1.0-SNAPSHOT'
jar {
manifest {
attributes(
'Main-Class': 'me/kmaxi/wynnvp/WynnVPBotMain'
)
}
}
shadowJar {
baseName = 'me.kmaxi'
version = '1.0'
manifest {
attributes 'Main-Class': 'me/kmaxi/wynnvp/WynnVPBotMain'
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.json:json:20230227'
// implementation 'net.dv8tion:JDA:5.0.0-alpha.9'
implementation group: 'net.dv8tion', name: 'JDA', version: '5.0.0-beta.19'
implementation 'org.jsoup:jsoup:1.15.4'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'mysql:mysql-connector-java:8.0.32'
}
sourceCompatibility = JavaVersion.VERSION_14
targetCompatibility = JavaVersion.VERSION_14