-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
54 lines (41 loc) · 1.56 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
51
52
53
54
plugins {
kotlin("jvm") version "2.0.10"
id("com.google.devtools.ksp") version "2.0.10-1.0.24"
application
}
group = "com.dulllife"
version = "1.1-SNAPSHOT"
repositories {
mavenCentral()
}
val exposedVersion: String by project
val ktorVersion: String by project
val daggerVersion: String by project
dependencies {
implementation("io.ktor:ktor-server-core:$ktorVersion")
implementation("io.ktor:ktor-server-netty:$ktorVersion")
implementation("com.google.dagger:dagger:$daggerVersion")
ksp("com.google.dagger:dagger-compiler:$daggerVersion")
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-crypt:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-kotlin-datetime:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-json:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-money:$exposedVersion")
implementation("org.flywaydb:flyway-core:10.17.2")
implementation("org.xerial:sqlite-jdbc:3.46.1.0")
implementation("ch.qos.logback:logback-classic:1.5.7")
implementation("com.sksamuel.hoplite:hoplite-core:2.8.0.RC3")
implementation("com.sksamuel.hoplite:hoplite-toml:2.8.0.RC3")
testImplementation("org.jetbrains.kotlin:kotlin-test")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}
application {
mainClass = "com.dulllife.MainKt"
}