-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (35 loc) · 1.07 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'com.minz1'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
jar {
manifest {
attributes 'Main-Class': 'com.minz1.MainKt'
}
}
dependencies {
implementation 'com.jessecorbett:diskord-jvm:1.6.2'
implementation 'com.kennycason:kumo-core:1.27'
implementation 'com.natpryce:konfig:1.6.10.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.13.1'
implementation 'org.jetbrains.exposed:exposed-core:0.24.1'
implementation 'org.jetbrains.exposed:exposed-dao:0.24.1'
implementation 'org.jetbrains.exposed:exposed-java-time:0.24.1'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.24.1'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.xerial:sqlite-jdbc:3.21.0.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "11"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}