|
15 | 15 | import com.marklogic.appdeployer.command.cpf.DeployCpfConfigsCommand; |
16 | 16 | import com.marklogic.appdeployer.command.cpf.DeployDomainsCommand; |
17 | 17 | import com.marklogic.appdeployer.command.cpf.DeployPipelinesCommand; |
| 18 | +import com.marklogic.appdeployer.command.data.LoadDataCommand; |
18 | 19 | import com.marklogic.appdeployer.command.databases.DeployContentDatabasesCommand; |
19 | 20 | import com.marklogic.appdeployer.command.databases.DeployOtherDatabasesCommand; |
20 | 21 | import com.marklogic.appdeployer.command.flexrep.DeployConfigsCommand; |
|
27 | 28 | import com.marklogic.appdeployer.command.mimetypes.DeployMimetypesCommand; |
28 | 29 | import com.marklogic.appdeployer.command.modules.DeleteTestModulesCommand; |
29 | 30 | import com.marklogic.appdeployer.command.modules.LoadModulesCommand; |
| 31 | +import com.marklogic.appdeployer.command.plugins.InstallPluginsCommand; |
30 | 32 | import com.marklogic.appdeployer.command.restapis.DeployRestApiServersCommand; |
31 | 33 | import com.marklogic.appdeployer.command.schemas.LoadSchemasCommand; |
32 | 34 | import com.marklogic.appdeployer.command.security.DeployAmpsCommand; |
@@ -128,6 +130,11 @@ public Map<String, List<Command>> buildCommandMap() { |
128 | 130 | cpfCommands.add(new DeployPipelinesCommand()); |
129 | 131 | map.put("mlCpfCommands", cpfCommands); |
130 | 132 |
|
| 133 | + // Data |
| 134 | + List<Command> dataCommands = new ArrayList<>(); |
| 135 | + dataCommands.add(new LoadDataCommand()); |
| 136 | + map.put("mlDataCommands", dataCommands); |
| 137 | + |
131 | 138 | // Flexrep |
132 | 139 | List<Command> flexrepCommands = new ArrayList<Command>(); |
133 | 140 | flexrepCommands.add(new DeployConfigsCommand()); |
@@ -159,6 +166,11 @@ public Map<String, List<Command>> buildCommandMap() { |
159 | 166 | replicaCommands.add(new ConfigureForestReplicasCommand()); |
160 | 167 | map.put("mlForestReplicaCommands", replicaCommands); |
161 | 168 |
|
| 169 | + // Plugins |
| 170 | + List<Command> pluginCommands = new ArrayList<>(); |
| 171 | + pluginCommands.add(new InstallPluginsCommand()); |
| 172 | + map.put("mlPluginCommands", pluginCommands); |
| 173 | + |
162 | 174 | // Tasks |
163 | 175 | List<Command> taskCommands = new ArrayList<Command>(); |
164 | 176 | taskCommands.add(new DeployScheduledTasksCommand()); |
|
0 commit comments