-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (31 loc) · 1.09 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.9.22'
id "com.github.ben-manes.versions" version "0.51.0"
}
group 'org.athenian'
version '1.0-SNAPSHOT'
repositories {
google()
mavenCentral()
}
dependencies {
implementation "io.ktor:ktor-server:$ktor_version"
implementation "io.ktor:ktor-server-cio:$ktor_version"
implementation "io.ktor:ktor-server-sessions:$ktor_version"
implementation "io.ktor:ktor-server-html-builder:$ktor_version"
implementation "io.ktor:ktor-server-locations:$ktor_version"
implementation "io.github.microutils:kotlin-logging:$logging_version"
implementation "ch.qos.logback:logback-classic:$logback_version"
}
kotlin {
jvmToolchain(17)
}
compileKotlin {
kotlinOptions.freeCompilerArgs += ['-opt-in=kotlin.time.ExperimentalTime',
'-opt-in=kotlinx.serialization.UnstableDefault']
}
compileTestKotlin {
kotlinOptions.freeCompilerArgs += ['-opt-in=kotlin.time.ExperimentalTime',
'-opt-in=kotlinx.serialization.UnstableDefault']
}