From 2c317630f1201501653c4f10bc185b0b63ea6a98 Mon Sep 17 00:00:00 2001 From: Jens Pelzetter Date: Wed, 26 Oct 2022 18:41:37 +0200 Subject: [PATCH] Corrected ImExporter dependencies --- .../librecms/contentsection/ContentSectionImExporter.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java b/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java index 222ce83a2..bfcbc5639 100644 --- a/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java +++ b/ccm-cms/src/main/java/org/librecms/contentsection/ContentSectionImExporter.java @@ -19,13 +19,13 @@ package org.librecms.contentsection; import org.libreccm.categorization.Category; -import org.libreccm.core.Resource; import org.libreccm.core.ResourceType; import org.libreccm.imexport.AbstractEntityImExporter; import org.libreccm.imexport.Exportable; import org.libreccm.imexport.Processes; +import org.libreccm.workflow.Workflow; +import org.librecms.lifecycle.LifecycleDefinition; -import java.util.Collections; import java.util.Objects; import java.util.Set; @@ -54,7 +54,9 @@ public class ContentSectionImExporter protected Set> getRequiredEntities() { return Set.of( Category.class, - ResourceType.class + ResourceType.class, + LifecycleDefinition.class, + Workflow.class ); }