-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 1.16 KB
/
build.gradle
File metadata and controls
38 lines (32 loc) · 1.16 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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.2.0'
}
sourceCompatibility = targetCompatibility = 16
mainClassName = 'JDA'
repositories {
mavenCentral()
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
implementation 'org.jetbrains:annotations:23.0.0'
implementation group: 'org.scilab.forge', name: 'jlatexmath', version: '1.0.7'
implementation 'net.dv8tion:JDA:5.0.0-beta.17'
implementation 'ch.qos.logback:logback-classic:1.2.11'
implementation 'com.vdurmont:emoji-java:5.1.1'
implementation 'org.jsoup:jsoup:1.15.3'
implementation "com.github.johnrengelman:shadow:8.1.1"
implementation group: 'ru.yandex.qatools.ashot', name: 'ashot', version: '1.5.4'
implementation 'org.seleniumhq.selenium:selenium-java:4.15.0'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:4.15.0'
implementation 'org.seleniumhq.selenium:selenium-devtools-v119:4.15.0'
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'org.postgresql:postgresql:42.2.27'
}