generated from Kotlin/compiler-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (31 loc) · 825 Bytes
/
build.gradle.kts
File metadata and controls
36 lines (31 loc) · 825 Bytes
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
plugins {
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.compose)
alias(libs.plugins.kotlin.compose.gradle)
}
repositories {
mavenCentral()
mavenLocal()
google()
}
dependencies {
implementation(kotlin("reflect"))
implementation(project(":examples"))
implementation(project(":tracked-call-tree-as-flow"))
implementation(compose.desktop.currentOs)
implementation(compose.components.resources)
implementation(libs.kotlinx.immutable.collections)
implementation(libs.kotlinx.coroutines.swing)
testImplementation(kotlin("test"))
testImplementation(libs.kotlinx.coroutines.test)
testImplementation(project(":programs-for-tests"))
}
compose.resources {
generateResClass = always
}
kotlin {
jvmToolchain(23)
}
tasks.test {
useJUnitPlatform()
}