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 +6
-0
lines changed
src/main/java/com/marklogic/appdeployer/command Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 11
11
import com .marklogic .appdeployer .command .appservers .DeployOtherServersCommand ;
12
12
import com .marklogic .appdeployer .command .appservers .UpdateRestApiServersCommand ;
13
13
import com .marklogic .appdeployer .command .clusters .ModifyLocalClusterCommand ;
14
+ import com .marklogic .appdeployer .command .cma .DeployConfigurationsCommand ;
14
15
import com .marklogic .appdeployer .command .cpf .DeployCpfConfigsCommand ;
15
16
import com .marklogic .appdeployer .command .cpf .DeployDomainsCommand ;
16
17
import com .marklogic .appdeployer .command .cpf .DeployPipelinesCommand ;
@@ -80,6 +81,11 @@ public Map<String, List<Command>> buildCommandMap() {
80
81
clusterCommands .add (new ModifyLocalClusterCommand ());
81
82
map .put ("mlClusterCommands" , clusterCommands );
82
83
84
+ // Configurations
85
+ List <Command > configurationCommands = new ArrayList <>();
86
+ configurationCommands .add (new DeployConfigurationsCommand ());
87
+ map .put ("mlConfigurationCommands" , configurationCommands );
88
+
83
89
// Databases
84
90
List <Command > dbCommands = new ArrayList <Command >();
85
91
dbCommands .add (new DeployContentDatabasesCommand ());
You can’t perform that action at this time.
0 commit comments