This commit is contained in:
Justin Bertram 2018-01-22 11:23:28 -06:00
commit 31ce365334
1 changed files with 5 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class ArtemisCreatePlugin extends ArtemisAbstractPlugin {
ArrayList<String> listCommands = new ArrayList<>();
add(listCommands, "create", "--allow-anonymous", "--silent", "--force", "--no-web", "--user", user, "--password", password, "--role", role, "--port-offset", "" + portOffset, "--data", dataFolder);
add(listCommands, "create", "--allow-anonymous", "--silent", "--force", "--user", user, "--password", password, "--role", role, "--port-offset", "" + portOffset, "--data", dataFolder);
if (allowAnonymous) {
add(listCommands, "--allow-anonymous");
@ -185,6 +185,10 @@ public class ArtemisCreatePlugin extends ArtemisAbstractPlugin {
add(listCommands, "--java-options", javaOptions);
}
if (noWeb) {
add(listCommands, "--no-web");
}
if (slave) {
add(listCommands, "--slave");
}