-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (49 loc) · 1.73 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
62
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.7.10'
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.0'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.10'
}
group 'at.ouev'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
//JDA
implementation("net.dv8tion:JDA:5.0.0-beta.2") {
exclude module: 'opus-java'
}
implementation 'ch.qos.logback:logback-classic:1.2.6'
//DB libs
// implementation "org.jetbrains.exposed:exposed-core:0.40.1"
// implementation "org.jetbrains.exposed:exposed-dao:0.40.1"
// implementation "org.jetbrains.exposed:exposed-jdbc:0.40.1"
// implementation "com.impossibl.pgjdbc-ng:pgjdbc-ng:0.8.3"
//Config libs
implementation 'com.sksamuel.hoplite:hoplite-core:1.4.16'
implementation 'com.sksamuel.hoplite:hoplite-yaml:1.4.16'
//Gmail
// implementation 'com.google.api-client:google-api-client:2.0.0'
// implementation 'com.google.oauth-client:google-oauth-client-jetty:1.34.1'
// implementation 'com.google.apis:google-api-services-gmail:v1-rev20220404-2.0.0'
// implementation 'commons-net:commons-net:3.9.0'
implementation project(':email4j')
implementation 'com.sun.mail:javax.mail:1.6.0'
implementation 'com.google.guava:guava:23.5-jre'
implementation 'org.jsoup:jsoup:1.15.3'
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0-RC"
}
test {
useJUnitPlatform()
}
tasks {
shadowJar {
manifest {
attributes "Main-Class": "MainKt"
}
}
}