Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 8aa2dd1

Browse files
committed
#264 Registered DeployConfigurationsCommand
1 parent 8a151ac commit 8aa2dd1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/marklogic/appdeployer/command/CommandMapBuilder.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import com.marklogic.appdeployer.command.appservers.DeployOtherServersCommand;
1212
import com.marklogic.appdeployer.command.appservers.UpdateRestApiServersCommand;
1313
import com.marklogic.appdeployer.command.clusters.ModifyLocalClusterCommand;
14+
import com.marklogic.appdeployer.command.cma.DeployConfigurationsCommand;
1415
import com.marklogic.appdeployer.command.cpf.DeployCpfConfigsCommand;
1516
import com.marklogic.appdeployer.command.cpf.DeployDomainsCommand;
1617
import com.marklogic.appdeployer.command.cpf.DeployPipelinesCommand;
@@ -80,6 +81,11 @@ public Map<String, List<Command>> buildCommandMap() {
8081
clusterCommands.add(new ModifyLocalClusterCommand());
8182
map.put("mlClusterCommands", clusterCommands);
8283

84+
// Configurations
85+
List<Command> configurationCommands = new ArrayList<>();
86+
configurationCommands.add(new DeployConfigurationsCommand());
87+
map.put("mlConfigurationCommands", configurationCommands);
88+
8389
// Databases
8490
List<Command> dbCommands = new ArrayList<Command>();
8591
dbCommands.add(new DeployContentDatabasesCommand());

0 commit comments

Comments
 (0)