ContentSection import requires that Resource is imported first.

deploy_packages_to_gitea
Jens Pelzetter 2022-10-20 19:00:37 +02:00
parent 327fd624c8
commit bf59b58cc9
1 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,7 @@
*/ */
package org.librecms.contentsection; package org.librecms.contentsection;
import org.libreccm.core.Resource;
import org.libreccm.imexport.AbstractEntityImExporter; import org.libreccm.imexport.AbstractEntityImExporter;
import org.libreccm.imexport.Exportable; import org.libreccm.imexport.Exportable;
import org.libreccm.imexport.Processes; import org.libreccm.imexport.Processes;
@ -49,7 +50,9 @@ public class ContentSectionImExporter
@Override @Override
protected Set<Class<? extends Exportable>> getRequiredEntities() { protected Set<Class<? extends Exportable>> getRequiredEntities() {
return Collections.emptySet(); return Set.of(
Resource.class
);
} }
@Override @Override