Merge branch 'RED-7158' into 'main'

RED-7158: add layoutgrid into new ViewerDocument as optional content

See merge request fforesight/layout-parser!34
This commit is contained in:
Kilian Schüttler 2023-08-15 13:22:06 +02:00
commit 5c6898b975
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ dependencies {
exclude("org.springframework.boot", "spring-boot-starter-validation")
}
implementation("com.knecon.fforesight:tenant-commons:0.10.0")
implementation("com.iqser.red.commons:storage-commons:2.32.0")
implementation("com.iqser.red.commons:storage-commons:2.27.0")
implementation("org.apache.pdfbox:pdfbox:${pdfBoxVersion}")
implementation("org.apache.pdfbox:pdfbox-tools:${pdfBoxVersion}")

View File

@ -159,7 +159,7 @@ public class ViewerDocumentService {
layer = new PDOptionalContentGroup(layerName);
ocprops.addGroup(layer);
}
ocprops.setGroupEnabled(layer, true);
ocprops.setGroupEnabled(layer, false);
dictionariesToUpdate.add(catalog.getCOSObject());
return layer;
}

View File

@ -19,7 +19,7 @@ dependencies {
implementation(project(":layoutparser-service-processor"))
implementation(project(":layoutparser-service-internal-api"))
implementation("com.iqser.red.commons:storage-commons:2.32.0")
implementation("com.iqser.red.commons:storage-commons:2.27.0")
implementation("com.knecon.fforesight:tenant-commons:0.10.0")
implementation("org.springframework.boot:spring-boot-starter-actuator:3.1.2")
implementation("com.amazonaws:aws-java-sdk-s3:1.12.529")