You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by an...@apache.org on 2015/05/21 12:04:09 UTC

[1/6] activemq-artemis git commit: Fixing silent-input over password

Repository: activemq-artemis
Updated Branches:
  refs/heads/master a2a88625d -> 879f4a6bb


Fixing silent-input over password

--silent-input was being ignored on password. This is a little fix
I have also moved an abstract just for InputAbstract


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/14cb3a07
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/14cb3a07
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/14cb3a07

Branch: refs/heads/master
Commit: 14cb3a07a031d4ef7056f4d9f1232d806802e078
Parents: a2a8862
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed May 20 15:42:07 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed May 20 22:42:39 2015 -0400

----------------------------------------------------------------------
 .../artemis/cli/commands/ActionAbstract.java    |  71 ------------
 .../activemq/artemis/cli/commands/Create.java   |  10 +-
 .../artemis/cli/commands/InputAbstract.java     | 111 +++++++++++++++++++
 3 files changed, 112 insertions(+), 80 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/14cb3a07/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/ActionAbstract.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/ActionAbstract.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/ActionAbstract.java
index 6b3b3a6..d00f4ac 100644
--- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/ActionAbstract.java
+++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/ActionAbstract.java
@@ -16,86 +16,15 @@
  */
 package org.apache.activemq.artemis.cli.commands;
 
-import java.util.Scanner;
-
 public abstract class ActionAbstract implements Action
 {
 
    protected ActionContext context;
 
-   private Scanner scanner;
-
-   private boolean noInput = false;
-
-   protected void disableInputs()
-   {
-      noInput = true;
-
-   }
-
-   protected String input(String propertyName, String prompt, String silentDefault)
-   {
-      if (noInput)
-      {
-         return silentDefault;
-      }
-      String inputStr;
-      boolean valid = false;
-      System.out.println();
-      do
-      {
-         context.out.println(propertyName + ": is mandatory with this configuration:");
-         context.out.println(prompt);
-         inputStr = scanner.nextLine();
-         if (inputStr.trim().equals(""))
-         {
-            System.out.println("Invalid Entry!");
-         }
-         else
-         {
-            valid = true;
-         }
-      }
-      while (!valid);
-
-      return inputStr.trim();
-   }
-
-   protected String inputPassword(String propertyName, String prompt, String silentDefault)
-   {
-      if (noInput)
-      {
-         return silentDefault;
-      }
-      String inputStr;
-      boolean valid = false;
-      System.out.println();
-      do
-      {
-         context.out.println(propertyName + ": is mandatory with this configuration:");
-         context.out.println(prompt);
-         inputStr = new String(System.console().readPassword());
-
-         if (inputStr.trim().equals(""))
-         {
-            System.out.println("Invalid Entry!");
-         }
-         else
-         {
-            valid = true;
-         }
-      }
-      while (!valid);
-
-      return inputStr.trim();
-   }
-
    public Object execute(ActionContext context) throws Exception
    {
       this.context = context;
 
-      scanner = new Scanner(context.in);
-
       return null;
    }
 

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/14cb3a07/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
index d99f287..9fae68b 100644
--- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
+++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
@@ -51,7 +51,7 @@ import static java.nio.file.attribute.PosixFilePermission.OWNER_WRITE;
  * CLI action that creates a broker instance directory.
  */
 @Command(name = "create", description = "creates a new broker instance")
-public class Create extends ActionAbstract
+public class Create extends InputAbstract
 {
    private static final Integer DEFAULT_PORT = 61616;
 
@@ -132,9 +132,6 @@ public class Create extends ActionAbstract
    @Option(name = "--role", description = "The name for the role created (Default: amq)")
    String role;
 
-   @Option(name = "--silent-input", description = "It will disable all the inputs, and it would make a best guess for any required input")
-   boolean silentInput;
-
    boolean IS_WINDOWS;
 
    boolean IS_CYGWIN;
@@ -359,11 +356,6 @@ public class Create extends ActionAbstract
    {
       super.execute(context);
 
-      if (silentInput)
-      {
-         this.disableInputs();
-      }
-
       try
       {
          return run(context);

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/14cb3a07/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
new file mode 100644
index 0000000..7578aad
--- /dev/null
+++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/InputAbstract.java
@@ -0,0 +1,111 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.activemq.artemis.cli.commands;
+
+import java.util.Scanner;
+
+import io.airlift.airline.Option;
+
+public class InputAbstract extends ActionAbstract
+{
+
+   private Scanner scanner;
+
+   @Option(name = "--silent-input", description = "It will disable all the inputs, and it would make a best guess for any required input")
+   private boolean silentInput = false;
+
+   public boolean isSilentInput()
+   {
+      return silentInput;
+   }
+
+   public void setSilentInput(boolean silentInput)
+   {
+      this.silentInput = silentInput;
+   }
+
+   protected String input(String propertyName, String prompt, String silentDefault)
+   {
+      if (silentInput)
+      {
+         return silentDefault;
+      }
+
+      String inputStr;
+      boolean valid = false;
+      System.out.println();
+      do
+      {
+         context.out.println(propertyName + ": is mandatory with this configuration:");
+         context.out.println(prompt);
+         inputStr = scanner.nextLine();
+         if (inputStr.trim().equals(""))
+         {
+            System.out.println("Invalid Entry!");
+         }
+         else
+         {
+            valid = true;
+         }
+      }
+      while (!valid);
+
+      return inputStr.trim();
+   }
+
+   protected String inputPassword(String propertyName, String prompt, String silentDefault)
+   {
+      if (silentInput)
+      {
+         return silentDefault;
+      }
+
+      String inputStr;
+      boolean valid = false;
+      System.out.println();
+      do
+      {
+         context.out.println(propertyName + ": is mandatory with this configuration:");
+         context.out.println(prompt);
+         inputStr = new String(System.console().readPassword());
+
+         if (inputStr.trim().equals(""))
+         {
+            System.out.println("Invalid Entry!");
+         }
+         else
+         {
+            valid = true;
+         }
+      }
+      while (!valid);
+
+      return inputStr.trim();
+   }
+
+   @Override
+   public Object execute(ActionContext context) throws Exception
+   {
+      super.execute(context);
+
+      this.scanner = new Scanner(context.in);
+
+      return null;
+   }
+
+}


[4/6] activemq-artemis git commit: option to remove the web server on the install

Posted by an...@apache.org.
option to remove the web server on the install


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/4de929c3
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/4de929c3
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/4de929c3

Branch: refs/heads/master
Commit: 4de929c3e1293afc9b5005f959e3b0a24483eec7
Parents: 14cb3a0
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed May 20 16:58:53 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed May 20 22:42:42 2015 -0400

----------------------------------------------------------------------
 .../activemq/artemis/cli/commands/Create.java   | 26 ++++++++++++++++++++
 .../cli/commands/etc/bootstrap-web-settings.txt |  4 +++
 .../artemis/cli/commands/etc/bootstrap.xml      |  5 +---
 .../artemis/test/StreamClassPathTest.java       |  1 +
 4 files changed, 32 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/4de929c3/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
index 9fae68b..ca36024 100644
--- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
+++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
@@ -80,6 +80,7 @@ public class Create extends InputAbstract
    public static final String ETC_CLUSTER_SECURITY_SETTINGS_TXT = "etc/cluster-security-settings.txt";
    public static final String ETC_CLUSTER_SETTINGS_TXT = "etc/cluster-settings.txt";
    public static final String ETC_CONNECTOR_SETTINGS_TXT = "etc/connector-settings.txt";
+   public static final String ETC_BOOTSTRAP_WEB_SETTINGS_TXT = "etc/bootstrap-web-settings.txt";
 
    @Arguments(description = "The instance directory to hold the broker's configuration and data", required = true)
    File directory;
@@ -132,10 +133,23 @@ public class Create extends InputAbstract
    @Option(name = "--role", description = "The name for the role created (Default: amq)")
    String role;
 
+   @Option(name = "--no-web", description = "This will remove the web server definition from bootstrap.xml")
+   boolean noWeb;
+
    boolean IS_WINDOWS;
 
    boolean IS_CYGWIN;
 
+   public boolean isNoWeb()
+   {
+      return noWeb;
+   }
+
+   public void setNoWeb(boolean noWeb)
+   {
+      this.noWeb = noWeb;
+   }
+
    public int getPortOffset()
    {
       return portOffset;
@@ -500,6 +514,18 @@ public class Create extends InputAbstract
          filters.put("${bootstrap.guest}", "");
       }
 
+
+      if (noWeb)
+      {
+         filters.put("${bootstrap-web-settings}", "");
+      }
+      else
+      {
+         filters.put("${bootstrap-web-settings}", applyFilters(readTextFile(ETC_BOOTSTRAP_WEB_SETTINGS_TXT), filters));
+      }
+
+
+
       write(ETC_BOOTSTRAP_XML, filters, false);
       write(ETC_BROKER_XML, filters, false);
       write(ETC_ARTEMIS_ROLES_PROPERTIES, filters, false);

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/4de929c3/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap-web-settings.txt
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap-web-settings.txt b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap-web-settings.txt
new file mode 100644
index 0000000..790cda3
--- /dev/null
+++ b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap-web-settings.txt
@@ -0,0 +1,4 @@
+   <!-- The web server is only bound to loalhost by default -->
+   <web bind="http://localhost:${http.port}" path="web">
+       <app url="jolokia" war="jolokia-war-1.2.3.war"/>
+   </web>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/4de929c3/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap.xml
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap.xml b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap.xml
index b4164d8..be51734 100644
--- a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap.xml
+++ b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/bootstrap.xml
@@ -25,10 +25,7 @@
 
    <server configuration="file:${artemis.instance}/etc/broker.xml"/>
 
-   <!-- The web server is only bound to loalhost by default -->
-   <web bind="http://localhost:${http.port}" path="web">
-       <app url="jolokia" war="jolokia-war-1.2.3.war"/>
-   </web>
+${bootstrap-web-settings}
 
 </broker>
 

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/4de929c3/artemis-cli/src/test/java/org/apache/activemq/artemis/test/StreamClassPathTest.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/test/java/org/apache/activemq/artemis/test/StreamClassPathTest.java b/artemis-cli/src/test/java/org/apache/activemq/artemis/test/StreamClassPathTest.java
index c9f7771..8a6764c 100644
--- a/artemis-cli/src/test/java/org/apache/activemq/artemis/test/StreamClassPathTest.java
+++ b/artemis-cli/src/test/java/org/apache/activemq/artemis/test/StreamClassPathTest.java
@@ -48,6 +48,7 @@ public class StreamClassPathTest
       openStream(Create.ETC_CLUSTER_SECURITY_SETTINGS_TXT);
       openStream(Create.ETC_CLUSTER_SETTINGS_TXT);
       openStream(Create.ETC_CONNECTOR_SETTINGS_TXT);
+      openStream(Create.ETC_BOOTSTRAP_WEB_SETTINGS_TXT);
    }
 
 


[6/6] activemq-artemis git commit: merge PR #242 - A few fixes that I found from my work on examples

Posted by an...@apache.org.
merge PR #242 - A few fixes that I found from my work on examples


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/879f4a6b
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/879f4a6b
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/879f4a6b

Branch: refs/heads/master
Commit: 879f4a6bb3b15dfc3d00bcde2d982194bd2dadc4
Parents: a2a8862 304e718
Author: Andy Taylor <an...@gmail.com>
Authored: Thu May 21 11:03:23 2015 +0100
Committer: Andy Taylor <an...@gmail.com>
Committed: Thu May 21 11:03:23 2015 +0100

----------------------------------------------------------------------
 README.md                                       |   2 +-
 .../artemis/cli/commands/ActionAbstract.java    |  71 ------------
 .../activemq/artemis/cli/commands/Create.java   |  51 +++++++--
 .../artemis/cli/commands/InputAbstract.java     | 111 +++++++++++++++++++
 .../cli/commands/etc/bootstrap-web-settings.txt |   4 +
 .../artemis/cli/commands/etc/bootstrap.xml      |   5 +-
 .../cli/commands/etc/cluster-settings.txt       |   4 +-
 .../artemis/test/StreamClassPathTest.java       |   1 +
 .../src/main/resources/README.html              |  10 +-
 9 files changed, 167 insertions(+), 92 deletions(-)
----------------------------------------------------------------------



[2/6] activemq-artemis git commit: updating distribution/README for a small typo

Posted by an...@apache.org.
updating distribution/README for a small typo


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/5e17408c
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/5e17408c
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/5e17408c

Branch: refs/heads/master
Commit: 5e17408c82c4c65588f72f63fb5e558a234b2e7b
Parents: 9b9cff1
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed May 20 18:14:55 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed May 20 22:42:42 2015 -0400

----------------------------------------------------------------------
 artemis-distribution/src/main/resources/README.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/5e17408c/artemis-distribution/src/main/resources/README.html
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/resources/README.html b/artemis-distribution/src/main/resources/README.html
index 082b453..3114718 100644
--- a/artemis-distribution/src/main/resources/README.html
+++ b/artemis-distribution/src/main/resources/README.html
@@ -44,23 +44,23 @@ $ ./artemis create $directory </br></br>Where $directory is the folder that you'
 The create process will input for any required property not specified. Example:
 
 <PRE>
---user: is mandatory at the current context:
+--user: is mandatory with this configuration:
 Please provide the default username:
 admin
 
---password: is mandatory at the current context:
+--password: is mandatory with this configuration:
 Please provide the default password:
 
 
---allow-anonymous: is mandatory at the current context:
+--allow-anonymous: is mandatory with this configuration:
 Allow anonymous access? (Y/N):
-Y
+y
+
 </PRE>
 
 For a full list of availble options for the create process you may use:
 
 $ ./artemis help create
-
 <PRE>
 NAME
         artemis create - creates a new broker instance


[5/6] activemq-artemis git commit: Fixing cluster-settings

Posted by an...@apache.org.
Fixing cluster-settings

I have been playing with settings on the examples and the cluster settings are not really working by default
The default cluster-settings is using the wrong acceptor and the lack of max-hops is not making it work on most examples
maybe I will add some configuration on the max-hops through the create interface. I will set it as 0 for now at least


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/304e7186
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/304e7186
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/304e7186

Branch: refs/heads/master
Commit: 304e71862f216380fd336aaa5af97b6d294ced0e
Parents: 5e17408
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed May 20 20:19:07 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed May 20 23:17:09 2015 -0400

----------------------------------------------------------------------
 .../activemq/artemis/cli/commands/Create.java      | 17 +++++++++++++++--
 .../artemis/cli/commands/etc/cluster-settings.txt  |  4 +++-
 2 files changed, 18 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/304e7186/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
index ca36024..bfffa32 100644
--- a/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
+++ b/artemis-cli/src/main/java/org/apache/activemq/artemis/cli/commands/Create.java
@@ -103,6 +103,9 @@ public class Create extends InputAbstract
    @Option(name = "--clustered", description = "Enable clustering")
    boolean clustered = false;
 
+   @Option(name = "--max-hops", description = "Number of hops on the cluster configuration")
+   int maxHops = 0;
+
    @Option(name = "--replicated", description = "Enable broker replication")
    boolean replicated = false;
 
@@ -140,6 +143,16 @@ public class Create extends InputAbstract
 
    boolean IS_CYGWIN;
 
+   public int getMaxHops()
+   {
+      return maxHops;
+   }
+
+   public void setMaxHops(int maxHops)
+   {
+      this.maxHops = maxHops;
+   }
+
    public boolean isNoWeb()
    {
       return noWeb;
@@ -434,7 +447,7 @@ public class Create extends InputAbstract
       filters.put("${hq.port}", String.valueOf(HQ_PORT + portOffset));
       filters.put("${http.port}", String.valueOf(HTTP_PORT + portOffset));
       filters.put("${data.dir}", data);
-
+      filters.put("${max-hops}", String.valueOf(maxHops));
       filters.put("${user}", getUser());
       filters.put("${password}", getPassword());
       filters.put("${role}", getRole());
@@ -448,7 +461,7 @@ public class Create extends InputAbstract
 
          filters.put("${connector-config.settings}", connectorSettings);
          filters.put("${cluster-security.settings}", readTextFile(ETC_CLUSTER_SECURITY_SETTINGS_TXT));
-         filters.put("${cluster.settings}", readTextFile(ETC_CLUSTER_SETTINGS_TXT));
+         filters.put("${cluster.settings}", applyFilters(readTextFile(ETC_CLUSTER_SETTINGS_TXT), filters));
          filters.put("${cluster-user}", getClusterUser());
          filters.put("${cluster-password}", getClusterPassword());
       }

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/304e7186/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/cluster-settings.txt
----------------------------------------------------------------------
diff --git a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/cluster-settings.txt b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/cluster-settings.txt
index 18460ed..2b9c48e 100644
--- a/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/cluster-settings.txt
+++ b/artemis-cli/src/main/resources/org/apache/activemq/artemis/cli/commands/etc/cluster-settings.txt
@@ -19,7 +19,9 @@
       <cluster-connections>
          <cluster-connection name="my-cluster">
             <address>jms</address>
-            <connector-ref>activemq</connector-ref>
+            <connector-ref>artemis</connector-ref>
+            <max-hops>${max-hops}</max-hops>
             <discovery-group-ref discovery-group-name="dg-group1"/>
          </cluster-connection>
       </cluster-connections>
+


[3/6] activemq-artemis git commit: changing README to reference the summary instead of hacking/readme

Posted by an...@apache.org.
changing README to reference the summary instead of hacking/readme

The README is just an empty page with the logo, the summary instead would have all the contents
this is better for reading at the main page


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/9b9cff1e
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/9b9cff1e
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/9b9cff1e

Branch: refs/heads/master
Commit: 9b9cff1e5b6a97e8f8f5a794e3f4bcc1d0be1aa7
Parents: 4de929c
Author: Clebert <cl...@apache.org>
Authored: Wed May 20 17:41:12 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed May 20 22:42:42 2015 -0400

----------------------------------------------------------------------
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9b9cff1e/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index e42b119..65155f3 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ This file describes some minimum 'stuff one needs to know' to get started coding
 ## Source
 
 For details about the modifying the code, building the project, running tests, IDE integration, etc. see 
-our [Hacking Guide](./docs/hacking-guide/en/README.md).
+our [Hacking Guide](./docs/hacking-guide/en/SUMMARY.md).
 
 ## Examples