-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (51 loc) · 1.77 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
plugins {
id 'application'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '6.0.0'
id 'org.jetbrains.kotlin.jvm' version '1.4.30'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.4.30'
}
mainClassName = 'me.arynxd.monke.MonkeKt'
sourceCompatibility = 14
targetCompatibility = 14
group = 'com.github.arynxd'
repositories {
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
//Kotlin
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1"
implementation "ru.gildor.coroutines:kotlin-coroutines-okhttp:1.0"
//Prometheus
implementation 'io.prometheus:simpleclient:0.10.0'
implementation 'io.prometheus:simpleclient_hotspot:0.10.0'
implementation 'io.prometheus:simpleclient_httpserver:0.10.0'
//Database
implementation 'org.postgresql:postgresql:42.2.18'
implementation "org.ktorm:ktorm-core:3.3.0"
implementation 'com.zaxxer:HikariCP:4.0.2'
implementation "org.ktorm:ktorm-support-postgresql:3.3.0"
//Discord
implementation 'net.dv8tion:JDA:4.2.1_253'
implementation 'com.github.minndevelopment:jda-ktx:842e9b3'
implementation 'com.sedmelluq:lavaplayer:1.3.75'
implementation 'club.minnced:discord-webhooks:0.5.6'
//Util
implementation "ch.qos.logback:logback-classic:1.2.3"
implementation 'org.reflections:reflections:0.9.12'
implementation 'org.jetbrains.kotlin:kotlin-scripting-jsr223:1.4.30'
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.0'
implementation 'org.jsoup:jsoup:1.13.1'
}
compileKotlin {
kotlinOptions {
jvmTarget = "14"
languageVersion = "1.4"
}
}
compileJava.options.encoding = 'UTF-8'