-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
57 lines (44 loc) · 1.21 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
56
57
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm")
id("org.jetbrains.compose")
id("org.jetbrains.kotlin.plugin.compose")
}
group = "dev.paulee"
version = rootProject.extra["app.version"] as String
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
dependencies {
implementation(compose.desktop.currentOs)
implementation(project(":api"))
implementation(project(":core"))
implementation(project(":ui"))
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}
compose.desktop {
application {
mainClass = "dev.paulee.MainKt"
buildTypes.release.proguard {
isEnabled = false
}
jvmArgs += listOf(
"-Dapi.version=${property("api.version")}",
"-Dcore.version=${property("core.version")}",
"-Dui.version=${property("ui.version")}",
"-Dapp.version=${property("app.version")}"
)
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "TextExplorer"
}
}
}