This closes #206 on importing Apollo style of creating instances I have tested this myself and it looks good, documentation good.. Great contributition!
Project: http://git-wip-us.apache.org/repos/asf/activemq-6/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-6/commit/a1bdb3c0 Tree: http://git-wip-us.apache.org/repos/asf/activemq-6/tree/a1bdb3c0 Diff: http://git-wip-us.apache.org/repos/asf/activemq-6/diff/a1bdb3c0 Branch: refs/heads/master Commit: a1bdb3c02ae17d247287ad78bb9e8e60eba37af3 Parents: 45f02a8 3c9e16f Author: Clebert Suconic <[email protected]> Authored: Wed Apr 15 18:09:08 2015 -0500 Committer: Clebert Suconic <[email protected]> Committed: Wed Apr 15 18:09:08 2015 -0500 ---------------------------------------------------------------------- .gitignore | 1 + .../java/org/apache/activemq/cli/ActiveMQ.java | 27 +- .../apache/activemq/cli/commands/Create.java | 362 +++++++++++++++++++ .../org/apache/activemq/cli/commands/Run.java | 10 +- .../org/apache/activemq/cli/commands/Stop.java | 8 +- .../apache/activemq/cli/commands/bin/activemq | 125 +++++++ .../activemq/cli/commands/bin/activemq-service | 154 ++++++++ .../activemq/cli/commands/bin/activemq.cmd | 72 ++++ .../apache/activemq/cli/commands/bin/run.bat | 17 + .../org/apache/activemq/cli/commands/bin/run.sh | 19 + .../apache/activemq/cli/commands/bin/stop.bat | 17 + .../apache/activemq/cli/commands/bin/stop.sh | 19 + .../cli/commands/etc/activemq-configuration.xml | 81 +++++ .../cli/commands/etc/activemq-roles.properties | 17 + .../cli/commands/etc/activemq-users.properties | 17 + .../activemq/cli/commands/etc/activemq.profile | 27 ++ .../cli/commands/etc/activemq.profile.cmd | 37 ++ .../activemq/cli/commands/etc/bootstrap.xml | 34 ++ .../cli/commands/etc/cluster-settings.txt | 25 ++ .../cli/commands/etc/logging.properties | 51 +++ .../cli/commands/etc/replicated-settings.txt | 6 + .../cli/commands/etc/shared-store-settings.txt | 6 + .../apache/activemq/dto/BasicSecurityDTO.java | 12 +- .../java/org/apache/activemq/dto/XmlUtil.java | 1 + .../activemq/src/main/resources/bin/activemq | 14 +- .../src/main/resources/bin/activemq-service | 154 -------- .../src/main/resources/bin/activemq.conf | 34 -- .../src/main/resources/bin/activemq.conf.bat | 34 -- .../activemq/src/main/resources/bin/run.bat | 17 - .../activemq/src/main/resources/bin/run.sh | 19 - .../activemq/src/main/resources/bin/stop.bat | 17 - .../activemq/src/main/resources/bin/stop.sh | 19 - .../config/clustered/activemq-configuration.xml | 104 ------ .../config/clustered/activemq-roles.properties | 17 - .../config/clustered/activemq-users.properties | 17 - .../resources/config/clustered/bootstrap.xml | 34 -- .../resources/config/examples/bootstrap.xml | 33 -- .../main/resources/config/logging.properties | 51 --- .../non-clustered/activemq-configuration.xml | 77 ---- .../non-clustered/activemq-roles.properties | 17 - .../non-clustered/activemq-users.properties | 17 - .../config/non-clustered/bootstrap.xml | 34 -- .../replicated/activemq-configuration.xml | 115 ------ .../config/replicated/activemq-roles.properties | 17 - .../config/replicated/activemq-users.properties | 17 - .../resources/config/replicated/bootstrap.xml | 34 -- .../shared-store/activemq-configuration.xml | 115 ------ .../shared-store/activemq-roles.properties | 17 - .../shared-store/activemq-users.properties | 17 - .../resources/config/shared-store/bootstrap.xml | 34 -- docs/quickstart-guide/en/installation.md | 16 +- docs/quickstart-guide/en/running.md | 159 +++----- docs/user-manual/en/using-server.md | 62 ++-- 53 files changed, 1217 insertions(+), 1240 deletions(-) ----------------------------------------------------------------------
