We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad3d52 commit a0fc695Copy full SHA for a0fc695
build.gradle.kts
@@ -51,7 +51,10 @@ dependencies {
51
implementation("co.touchlab:kermit:$kermitVersion")
52
implementation("io.sentry:sentry:7.2.0")
53
54
- implementation("org.apache.pdfbox:pdfbox:3.0.1")
+ // TODO pdfbox does not work well with conveyor as the tool uses jlink and pdfbox is a auto-module which is not
55
+ // supported by jlink. Updating to 3.0.1 currently would break the Mediator completely. With 3.0.0-RC1 just
56
+ // VirtualPrinters do not work.
57
+ implementation("org.apache.pdfbox:pdfbox:3.0.0-RC1")
58
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.3") // Adds a Main Dispatcher for Desktop
59
60
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
0 commit comments