22 lines
579 B
Kotlin
22 lines
579 B
Kotlin
plugins {
|
|
id("songbook-conventions")
|
|
id("org.jetbrains.compose")
|
|
id("org.jetbrains.kotlin.plugin.compose")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":app"))
|
|
implementation(project(":model"))
|
|
implementation(project(":parser"))
|
|
implementation(compose.desktop.currentOs)
|
|
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")
|
|
implementation("ch.qos.logback:logback-classic:1.5.16")
|
|
implementation("org.apache.pdfbox:pdfbox:3.0.4")
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "de.pfadfinder.songbook.gui.AppKt"
|
|
}
|
|
}
|