-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (37 loc) · 1.63 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
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
mainClassName = 'com.github.gpluscb.toni.Bot'
version '1.2.17'
sourceCompatibility = 17
repositories {
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://jitpack.io' }
// For JDA-Chewtils
maven { url "https://m2.chew.pro/snapshots" }
}
dependencies {
// Custom branch and commit for modals
implementation(group: 'net.dv8tion', name: 'JDA', version: '5.0.0-beta.12') {
exclude module: 'opus-java'
}
implementation 'pw.chew:jda-chewtils:2.0-SNAPSHOT'
implementation group: 'com.github.gpluscb', name: 'gg-java', version: '1.0.2'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.10.0'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.20.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.20.0'
implementation group: 'org.graalvm.js', name: 'js', version: '23.0.1'
implementation group: 'org.graalvm.js', name: 'js-scriptengine', version: '23.0.1'
implementation group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.9.0'
implementation group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.9.0'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.42.0.0'
}
compileJava.options.encoding = 'UTF-8'