-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
29 lines (26 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
plugins {
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.5.30'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.5.30'
}
group "kotlinautas"
version "0.0.1"
mainClassName = "io.ktor.server.netty.EngineMain"
repositories {
mavenCentral()
}
dependencies {
implementation "io.ktor:ktor-server-core:$ktor_version"
implementation "io.ktor:ktor-serialization:$ktor_version"
implementation "io.ktor:ktor-auth:$ktor_version"
implementation "io.ktor:ktor-auth-jwt:$ktor_version"
implementation "io.ktor:ktor-server-netty:$ktor_version"
implementation "ch.qos.logback:logback-classic:$logback_version"
implementation "org.jetbrains.exposed:exposed-core:$exposed_version"
implementation "org.jetbrains.exposed:exposed-dao:$exposed_version"
implementation "org.jetbrains.exposed:exposed-jdbc:$exposed_version"
implementation "com.h2database:h2:$h2_version"
implementation "org.valiktor:valiktor-core:0.12.0"
testImplementation "io.ktor:ktor-server-tests:$ktor_version"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
}