This repository was archived by the owner on Sep 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
src/main/java/com/marklogic/appdeployer/command Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 2525import com .marklogic .appdeployer .command .schemas .LoadSchemasCommand ;
2626import com .marklogic .appdeployer .command .security .*;
2727import com .marklogic .appdeployer .command .tasks .DeployScheduledTasksCommand ;
28+ import com .marklogic .appdeployer .command .temporal .DeployTemporalAxesCommand ;
29+ import com .marklogic .appdeployer .command .temporal .DeployTemporalCollectionsCommand ;
30+ import com .marklogic .appdeployer .command .temporal .DeployTemporalCollectionsLSQTCommand ;
2831import com .marklogic .appdeployer .command .triggers .DeployTriggersCommand ;
2932import com .marklogic .appdeployer .command .viewschemas .DeployViewSchemasCommand ;
3033
@@ -142,6 +145,13 @@ public Map<String, List<Command>> buildCommandMap() {
142145 triggerCommands .add (new DeployTriggersCommand ());
143146 map .put ("mlTriggerCommands" , triggerCommands );
144147
148+ // Temporal
149+ List <Command > temporalCommands = new ArrayList <>();
150+ temporalCommands .add (new DeployTemporalAxesCommand ());
151+ temporalCommands .add (new DeployTemporalCollectionsCommand ())
;
152+ temporalCommands .add (new DeployTemporalCollectionsLSQTCommand ())
;
153+ map .put ("mlTemporalCommands" , temporalCommands );
154+
145155 // SQL Views
146156 List <Command > viewCommands = new ArrayList <Command >();
147157 viewCommands .add (new DeployViewSchemasCommand ());
You can’t perform that action at this time.
0 commit comments