-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
52 lines (40 loc) · 1.28 KB
/
build.gradle.kts
File metadata and controls
52 lines (40 loc) · 1.28 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
47
48
49
50
51
52
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm")
id("org.jetbrains.compose")
}
group = "me.brisson"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
dependencies {
implementation(compose.desktop.currentOs)
// Coroutines for swing
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.3")
// FlatLaf - Look and Feel
implementation("com.formdev:flatlaf:3.2")
// Exposed - Local Storage
implementation("org.jetbrains.exposed:exposed-core:0.41.1")
implementation("org.jetbrains.exposed:exposed-dao:0.41.1")
implementation("org.jetbrains.exposed:exposed-jdbc:0.41.1")
// Logger - SLF4J
implementation("org.slf4j:slf4j-api:1.7.25")
implementation("org.slf4j:slf4j-simple:1.7.25")
// SQLite
implementation(dependencyNotation = "com.h2database:h2:2.1.214")
// DI - Koin
implementation("io.insert-koin:koin-core:3.0.1")
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "pomodoro"
packageVersion = "1.0.0"
}
}
}