-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
34 lines (26 loc) · 976 Bytes
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val exposedVersion = "0.31.1"
val log4jVersion = "2.14.0"
plugins {
kotlin("jvm") version "1.5.0"
id("com.github.johnrengelman.shadow") version "7.0.0"
}
group = "de.skyslycer.dvyne"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://m2.dv8tion.net/releases")
}
dependencies {
implementation("net.dv8tion:JDA:4.2.1_253")
implementation("org.slf4j", "slf4j-api", "1.7.30")
implementation("org.apache.logging.log4j", "log4j-core", log4jVersion)
implementation("org.apache.logging.log4j", "log4j-slf4j-impl", log4jVersion)
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
implementation("org.xerial:sqlite-jdbc:3.30.1")
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "11"
}