-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
46 lines (36 loc) · 1.26 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
46 lines (36 loc) · 1.26 KB
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
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm")
kotlin("plugin.serialization") version KotlinVersion.CURRENT.toString()
id("org.jetbrains.compose") version "1.8.2"
id("org.jetbrains.kotlin.plugin.compose")
}
group = "com.hermanest"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
dependencies {
implementation(compose.desktop.currentOs)
implementation(compose.material3)
implementation(compose.materialIconsExtended)
implementation("org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta05")
implementation("org.openpnp:opencv:4.9.0-0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
implementation("io.github.oshai:kotlin-logging-jvm:7.0.3")
implementation("org.slf4j:slf4j-simple:2.0.3")
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation(kotlin("test"))
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "kotlin-opencv"
packageVersion = "1.0.0"
}
}
}