Kotlin/JVM multi-module project for generating a scout songbook PDF from ChordPro-format text files. Includes ChordPro parser, layout engine with greedy spread packing for double-page songs, OpenPDF renderer, CLI (Clikt), Compose Desktop GUI, and 5 sample songs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
456 B
Kotlin
17 lines
456 B
Kotlin
plugins {
|
|
id("songbook-conventions")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":model"))
|
|
implementation(project(":parser"))
|
|
implementation(project(":layout"))
|
|
implementation(project(":renderer-pdf"))
|
|
|
|
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")
|
|
implementation("ch.qos.logback:logback-classic:1.5.16")
|
|
|
|
testImplementation(kotlin("test"))
|
|
testImplementation("io.kotest:kotest-assertions-core:5.9.1")
|
|
}
|