-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
81 lines (70 loc) · 2.32 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("multiplatform")
id("org.jetbrains.compose")
id("org.jetbrains.dokka") version "1.8.20"
id("com.github.ben-manes.versions") version "0.47.0"
}
group = "com.github.diegoberaldin.metaphrase"
version = libs.versions.appVersion
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
subprojects {
apply(plugin = "org.jetbrains.dokka")
}
kotlin {
jvm {
jvmToolchain(11)
withJava()
}
sourceSets {
val jvmMain by getting {
dependencies {
implementation(compose.desktop.currentOs)
implementation(compose.foundation)
implementation(libs.compose.material3)
implementation(libs.koin)
implementation(libs.decompose)
implementation(libs.decompose.extensions)
implementation(projects.coreCommon)
implementation(projects.coreLocalization)
implementation(projects.corePersistence)
implementation(projects.domainLanguage)
implementation(projects.domainProject)
implementation(projects.domainLanguage.data)
implementation(projects.domainProject.data)
implementation(projects.domainMt.repository)
implementation(projects.featureMain)
}
}
val jvmTest by getting
}
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "MetaPhrase"
packageVersion = libs.versions.appVersion.get().substring(0, 5)
version = libs.versions.buildNumber.get()
includeAllModules = true
macOS {
iconFile.set(project.file("src/jvmMain/resources/icon.icns"))
setDockNameSameAsPackageName = true
}
windows {
iconFile.set(project.file("src/jvmMain/resources/icon.ico"))
}
linux {
iconFile.set(project.file("src/jvmMain/resources/icon.png"))
}
}
}
}
tasks.withType<Test>() {
useJUnitPlatform()
}