-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle.kts
50 lines (43 loc) · 1.53 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
kotlin("jvm") version "1.7.0"
kotlin("plugin.serialization") version "1.7.0"
id("net.mamoe.mirai-console") version "2.13.0"
}
group = "KonnyakuCamp"
version = "0.4.9"
repositories {
mavenCentral()
mavenLocal()
gradlePluginPortal()
}
val exposedVersion = "0.32.1"
val hikariVersion = "5.0.0"
val mysqlVersion = "8.0.25"
val quartzVersion = "2.3.2"
val miraiSlf4jBridgeVersion = "1.2.0"
val sqliteVersion = "3.36.0.3"
dependencies {
testImplementation(kotlin("test-junit5"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
implementation("com.zaxxer:HikariCP:$hikariVersion")
implementation("mysql:mysql-connector-java:$mysqlVersion")
implementation("org.quartz-scheduler:quartz:$quartzVersion")
implementation("net.mamoe:mirai-slf4j-bridge:$miraiSlf4jBridgeVersion")
implementation("org.xerial:sqlite-jdbc:$sqliteVersion")
implementation("io.ktor:ktor-client-core:2.2.1")
implementation("io.ktor:ktor-client-okhttp:2.2.1")
//implementation("org.slf4j:slf4j-simple:1.7.1")
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}