-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
55 lines (47 loc) · 1.81 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
53
54
55
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm")
// id("org.jetbrains.compose")
id("org.jetbrains.compose") version "1.5.0-dev1114"
id ("org.jetbrains.kotlin.plugin.serialization") version "1.6.21"
}
group = "com.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
dependencies {
// Note, if you develop a library, you should use compose.desktop.common.
// compose.desktop.currentOs should be used in launcher-sourceSet
// (in a separate module for demo project and in testMain).
// With compose.desktop.common you will also lose @Preview functionality
implementation(compose.desktop.currentOs)
implementation(compose.desktop.common)
implementation(compose.material3)
implementation(compose.ui)
implementation(compose.uiTooling)
implementation(compose.preview)
implementation(compose.animationGraphics)
implementation(compose.materialIconsExtended)
implementation("io.ktor:ktor-client-cio-jvm:2.3.5")
implementation("io.ktor:ktor-client-content-negotiation:2.3.5")
implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.5")
implementation("com.google.code.gson:gson:2.8.9")
implementation("io.ktor:ktor-server-default-headers:2.3.5")
implementation("ch.qos.logback:logback-classic:1.2.9")
implementation("media.kamel:kamel-image:0.8.2")
implementation("net.java.dev.jna:jna:5.9.0")
implementation("uk.co.caprica:vlcj:4.8.2")
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "Wallpapers-Desktop"
packageVersion = "1.0.0"
}
}
}