-
Notifications
You must be signed in to change notification settings - Fork 26
/
build.gradle.kts
52 lines (40 loc) · 1.29 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
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.6.21"
id("com.github.johnrengelman.shadow") version "7.1.2"
// Apply the application plugin to add support for building a CLI application.
application
}
group = "app.roomtorent"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
val serializationVersion = "0.20.0"
val ktorVersion = "2.0.0"
dependencies {
// Align versions of all Kotlin components
implementation(platform(kotlin("bom")))
// Kotlin
implementation(kotlin("stdlib-jdk8"))
implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime:$serializationVersion")
// Ktor
implementation("io.ktor:ktor-server:$ktorVersion")
implementation("io.ktor:ktor-server-jetty:$ktorVersion")
implementation("io.ktor:ktor-network-tls:$ktorVersion")
// Utilities
implementation("com.beust:klaxon:5.6")
implementation("com.squareup:kotlinpoet:1.9.0")
implementation("com.github.kittinunf.fuel:fuel:2.3.1")
// Test
testImplementation(kotlin("test-junit"))
}
application {
mainClass.set("app.roomtorent.figmatocompose.EngineMain")
}
tasks {
compileKotlin {
kotlinOptions.apiVersion = "1.5"
kotlinOptions.languageVersion = "1.5"
}
}