-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (30 loc) · 1.19 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
plugins {
id'application'
id'com.github.johnrengelman.shadow' version '5.2.0'
}
mainClassName = 'by.pklabs.aormiobot.Runner'
sourceCompatibility = targetCompatibility = 1.8
group 'by.pashtet-labs'
version '0.8b'
repositories {
mavenCentral()
maven { url "https://m2.chew.pro/snapshots" }
}
dependencies {
implementation("net.dv8tion:JDA:5.0.0-alpha.5") {
exclude module: 'opus-java'
}
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.0-alpha12'
// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
implementation "pw.chew:jda-chewtils:2.0-SNAPSHOT"
// https://mvnrepository.com/artifact/com.zaxxer/HikariCP
implementation group: 'com.zaxxer', name: 'HikariCP', version: '5.0.1'
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.28'
}
shadowJar{
archiveFileName = "${project.name}-${project.version}.${extension}"
}
compileJava.options.encoding = 'UTF-8'