-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
51 lines (37 loc) · 1.36 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
import org.jetbrains.compose.compose
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.4.0"
id("org.jetbrains.compose") version "0.1.0-m1-build62"
kotlin("plugin.serialization") version "1.4.10"
application
}
group = "me.subash"
version = "1.0-SNAPSHOT"
repositories {
jcenter()
mavenCentral()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
}
dependencies {
implementation(compose.desktop.all)
implementation(compose.materialIconsExtended)
implementation("com.google.code.gson:gson:2.8.6")
// implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1")
implementation("io.ktor:ktor-client-core:1.4.0")
implementation("io.ktor:ktor-client-okhttp:1.4.0")
implementation("io.ktor:ktor-client-json:1.4.0")
implementation("io.ktor:ktor-client-serialization:1.4.0")
implementation ("io.ktor:ktor-client-logging-jvm:1.4.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.0")
implementation("com.squareup.okhttp3:okhttp:4.9.0")
implementation ("com.google.code.gson:gson:2.8.6")
implementation(project(":model"))
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "1.8"
}
application {
mainClassName = "MainKt"
}