-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (47 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
52
53
54
55
56
57
58
59
60
61
plugins {
id 'java'
id 'application'
id 'eclipse'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
jcenter()
mavenCentral()
//maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://jitpack.io' }
}
sourceCompatibility = 16 //TODO
targetCompatibility = 16 //TODO
compileJava.options.encoding = 'UTF-8'
dependencies {
implementation 'com.google.guava:guava:28.0-jre'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.3'
implementation 'org.javacord:javacord:3.4.0'
implementation 'org.javacord:javacord-core:3.4.0'
//implementation 'pw.mihou:Velen:e4b2e168e3'
//implementation 'pw.mihou:Velen:c97d4492ce'
implementation 'pw.mihou:Velen:3.1.1'
//implementation 'com.github.Joshix-1:Javacord:Jemand-SNAPSHOT'
//implementation 'com.github.Joshix-1:Javacord:e5b6a2e'
implementation 'redis.clients:jedis:3.7.0'
//cron to human readable
implementation "it.burning:cron-expression-descriptor:1.2.2"
implementation 'org.quartz-scheduler:quartz:2.3.2'
implementation 'mysql:mysql-connector-java:8.0.27'
//implementation 'ch.qos.logback:logback-classic:1.2.10'
//stats
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
//implementation 'ch.qos.logback:logback-classic:1.2.7'
implementation 'org.apache.logging.log4j:log4j-api:2.11.0' //for reimpl
testImplementation 'junit:junit:4.12'
}
application {
// Define the main class for the application
mainClassName = 'icu.azim.fr.autobot.EntryPoint'
}
test {
systemProperty "file.encoding", "utf-8"
}